PeerMessagePropagation.cs 385 B

12345678910111213
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. public enum PeerMessagePropagation
  7. {
  8. None = 0x0000,
  9. Local = 0x0001,
  10. Remote = 0x0002,
  11. LocalAndRemote = Local | Remote
  12. }
  13. }