예제 #1
0
 /// <summary>
 /// Check if the client is open and then close it.
 /// </summary>
 /// <param name="client">The client to close</param>
 public static void CloseService(DocumentConverterServiceClient client)
 {
     if (client != null && client.State == CommunicationState.Opened)
     {
         client.Close();
     }
 }
 private void CloseService(DocumentConverterServiceClient client)
 {
     if (client != null && client.State == CommunicationState.Opened)
         client.Close();
 }