次の方法で共有


TcpServerChannel コンストラクタ (IDictionary, IServerChannelSinkProvider)

チャネル プロパティとシンクを指定して、TcpServerChannel クラスの新しいインスタンスを初期化します。

名前空間: System.Runtime.Remoting.Channels.Tcp
アセンブリ: System.Runtime.Remoting (system.runtime.remoting.dll 内)

構文

'宣言
Public Sub New ( _
    properties As IDictionary, _
    sinkProvider As IServerChannelSinkProvider _
)
'使用
Dim properties As IDictionary
Dim sinkProvider As IServerChannelSinkProvider

Dim instance As New TcpServerChannel(properties, sinkProvider)
public TcpServerChannel (
    IDictionary properties,
    IServerChannelSinkProvider sinkProvider
)
public:
TcpServerChannel (
    IDictionary^ properties, 
    IServerChannelSinkProvider^ sinkProvider
)
public TcpServerChannel (
    IDictionary properties, 
    IServerChannelSinkProvider sinkProvider
)
public function TcpServerChannel (
    properties : IDictionary, 
    sinkProvider : IServerChannelSinkProvider
)

パラメータ

  • properties
    チャネルで使用される構成プロパティの値を指定する IDictionary コレクション。

例外

例外の種類 条件

ArgumentException

指定したチャネル プロパティの書式が正しくありません。

解説

チャネル構成プロパティの詳細については、「チャネルおよびフォーマッタの構成プロパティ」を参照してください。

注意

サーバー コンピュータで Windows 95/98/Me が実行されている場合、TcpServerChannel をセキュリティ保護の対象として指定することはできません。

シンク機能が不要な場合は、sinkProvider パラメータを null 参照 (Visual Basic では Nothing) に設定します。

使用例

このコンストラクタを使用して、特定の構成プロパティを持つ TcpServerChannel オブジェクトを作成するコード例を次に示します。

// Specify server channel properties.
IDictionary dict = new Hashtable();
dict["port"] = 9090;
dict["authenticationMode"] = "IdentifyCallers";
 
// Set up a server channel.
TcpServerChannel serverChannel = new TcpServerChannel(dict, null);
ChannelServices.RegisterChannel(serverChannel);    

.NET Framework のセキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「」を参照してください。

プラットフォーム

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 2.0、1.1、1.0

参照

関連項目

TcpServerChannel クラス
TcpServerChannel メンバ
System.Runtime.Remoting.Channels.Tcp 名前空間

その他の技術情報

チャネルおよびフォーマッタの構成プロパティ