Click here to Skip to main content
15,887,175 members
Articles / General Programming / Performance
Alternative
Tip/Trick

Do not use "using" for WCF Clients

Rate me:
Please Sign up or sign in to vote.
4.88/5 (5 votes)
18 May 2011CPOL 7.1K   4  
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)


Written By
Architect http://www.simpletechture.nl
Netherlands Netherlands
Patrick Kalkman is a senior Software Architect with more than 20 years professional development experience. He works for SimpleTechture where he helps teams develop state of the art web applications.

Patrick enjoys writing his blog. It discusses agile software development. Patrick can be reached at patrick@simpletechture.nl.

Published Windows 8 apps:


Published Windows Phone apps:


Awards:

Best Mobile article of March 2012
Best Mobile article of June 2012

Comments and Discussions

 
-- There are no messages in this forum --