kennyw.com » IndigoKenny Wolf's Thoughts of the MomentWhen to use Async Service Operations- April 30, 2008 I was recently asked about the motivation for choosing asynchronous service operations in WCF (i.e. OperationContract(AsyncPattern = true)). If you have an operation that is blocking (accessing SQL, Channels, etc) then you should use AsyncPattern=true.&160; That way you&8217;ll free up whatever thread we&8217;re using to call your operation from. The general idea is that if ...http://kennyw.com/indigo/258 |