PeerMessageOrigination.cs 322 B

1234567891011
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. public enum PeerMessageOrigination
  7. {
  8. Local = 0x0000,
  9. Remote = 0x0001,
  10. }
  11. }