File: System\ServiceModel\IContextSessionProvider.cs
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel)
//-----------------------------------------------------------------------------
// 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
    {
    }
}