Q: Is there any difference for the client between WCF async service call and async client call?
Right now I have a contract that looks like this
[ServiceContract]
public interface IFoo
{
[OperationContract(AsyncPattern = true)]
IAsyncResult BeginGetFoo();
[OperationContract]
FooResult EndGetFoo(IAsyncResult asyncResult);
...
}
And I was thinking to refactor it to something like this (and just call it asynchronously later from a WPF client).
[ServiceContract]
public interface IFoo
{
[OperationContract]
FooResult GetFoo();
...
}
The reason is that I want to simplify service contract for the client.