16 lines
515 B
C#
16 lines
515 B
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.ServiceModel
|
||
|
{
|
||
|
using System;
|
||
|
using System.ServiceModel.Channels;
|
||
|
using System.ServiceModel;
|
||
|
|
||
|
// CSD Dev Framework#417: marker interface for IServiceBehaviors/Bindings that support context at the "app layer"
|
||
|
interface IContextSessionProvider
|
||
|
{
|
||
|
}
|
||
|
}
|