// // Copyright (c) Microsoft Corporation. All rights reserved. // namespace System.ServiceModel.Channels { public abstract class SessionOpenNotification { public abstract bool IsEnabled { get; } public abstract void UpdateMessageProperties(MessageProperties inboundMessageProperties); } }