ISessionChannel<TSession> Interface

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

'Declaration
Public Interface ISessionChannel(Of TSession As ISession)
public interface ISessionChannel<TSession>
where TSession : ISession

Type Parameters

  • TSession
    The type of ISession associated with the channel.

The ISessionChannel<TSession> type exposes the following members.

Properties

  Name Description
Public propertySupported by Silverlight for Windows Phone Session Gets the type of session associated with the 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

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.