方法 : プログラムを使用してチャネルを構成する
このコード例では、サーバーのアプリケーション ドメインに対してプログラムでチャネルを構成する方法を示します。この例では、リモート処理システムが転送用に HttpChannel オブジェクトを使用し、シリアル化と逆シリアル化用に BinaryFormatter オブジェクトを使用することが、サーバーによって指定されています。
例
Dim props = New Hashtable() As IDictionary
props("name") = "ChannelName1"
Dim channel As New HttpChannel( _
props, _
Nothing, _
New BinaryServerFormatterSinkProvider() _
)
ChannelServices.RegisterChannel(channel)
IDictionary props = new Hashtable();
props["name"] = "MyHttpChannel";
HttpChannel channel = new HttpChannel(
props,
null,
new BinaryServerFormatterSinkProvider()
);
ChannelServices.RegisterChannel(channel);
関連項目
概念
Copyright © 2007 by Microsoft Corporation.All rights reserved.