CommunicationState.cs 420 B

123456789101112131415161718
  1. //----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //----------------------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. using System;
  7. public enum CommunicationState
  8. {
  9. Created,
  10. Opening,
  11. Opened,
  12. Closing,
  13. Closed,
  14. Faulted
  15. }
  16. }