ISessionChannel(TSession) Interface (System.ServiceModel.Channels)

Switch View :
ScriptFree
.NET Framework Class Library
ISessionChannel<TSession> Interface

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Defines the interface that associates a channel with a specific type of session.

Namespace:  System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
Syntax

Visual Basic
Public Interface ISessionChannel(Of TSession As ISession)
C#
public interface ISessionChannel<TSession>
where TSession : ISession

Visual C++
generic<typename TSession>
where TSession : ISession
public interface class ISessionChannel
F#
type ISessionChannel<'TSession when 'TSession : ISession> =  interface end

Type Parameters

TSession

The type of ISession associated with the cannel.

The ISessionChannel<TSession> type exposes the following members.

Properties

  Name Description
Public property Supported by Portable Class Library Session Gets the type of session associated with this channel.
Top
Remarks

The ISessionChannel<TSession> interface is the base interface for session-based channels. It associates the type of session with the channel by setting the generic type parameter TSession to a type that implements the ISession interface in a way that reflects its role in the message exchange. For example, the TSession is set to IInputSession for an incoming session on the receiving side of a one-way communication, to IOutputSession for an outgoing session on the sending side of a one-way communication, and to IDuplexSession for a duplex session for a bi-directional communication pattern.

The ISessionChannel<TSession> interface provides a Session property to retrieve the session with which the channel is associated.

Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library
Platforms

Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

See Also

Reference