MessageState.cs 352 B

1234567891011121314
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Channels
  5. {
  6. public enum MessageState
  7. {
  8. Created,
  9. Read,
  10. Written,
  11. Copied,
  12. Closed,
  13. }
  14. }