Files
linux-packaging-mono/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/SessionOpenNotification.cs

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);
}
}