I have a contract in the same signature as an Action<T>
delegate:
[ServiceContract()]
interface ISomeService
{
[OperationContract()]
void DoSomething(object data);
}
- Will the client wait for the server side method execution to finish?
- If yes, how to prevent this?
- Should I use async calls to achieve my goal?