17 lines
377 B
C#
Raw Normal View History

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