Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / programming / performance

Do not use using for WCF Clients

4.88/5 (5 votes)
18 May 2011CPOL 7.4K  
Good Tip, got my 5!As an alternative to your tip, when using generated proxies you could also add the logic to a partial class with the same name as the proxy class, see below.public partial class MyGeneratedProxyClient : IDisposable{ void IDisposable Dispose() { try...
Good Tip, got my 5!

As an alternative to your tip, when using generated proxies you could also add the logic to a partial class with the same name as the proxy class, see below.

public partial class MyGeneratedProxyClient : IDisposable
{
   void IDisposable Dispose()
   {
      try
      {
         if (this.State == CommunicationState.Faulted)
           this.Abort();
         else
           this.Close();
       }
       catch
       {
         this.Abort();
       }
   }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)