16 lines
515 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// 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
{
}
}