开发者

How to make a WCF client ignore the response?

I have a contract in the same signature as an Action<T> delegate:

[ServiceContract()]
interface ISomeService
{
    [OperationContract()]
    void DoSomethi开发者_如何转开发ng(object data);
}
  1. Will the client wait for the server side method execution to finish?
  2. If yes, how to prevent this?
  3. Should I use async calls to achieve my goal?


Look into one way operations.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜