17 lines
377 B
C#
17 lines
377 B
C#
// <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);
|
|
}
|
|
}
|