SessionOpenNotification.cs 377 B

12345678910111213141516
  1. // <copyright>
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace System.ServiceModel.Channels
  5. {
  6. public abstract class SessionOpenNotification
  7. {
  8. public abstract bool IsEnabled
  9. {
  10. get;
  11. }
  12. public abstract void UpdateMessageProperties(MessageProperties inboundMessageProperties);
  13. }
  14. }