Hello there,
For seme of my service methods, client application needn't wait for any response to be sent over,
So I just decorated these methods with IsOneWay=true
, so they look like:
[OperationContract(IsOneWay=true)]
void MethodName(string param1, int param2)
Now, when I call this method from client application, it still seems to wait for the method to complete processing.
Am I missing something?