TcpClientChannel 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 TcpClientChannel 類別的新執行個體。
多載
TcpClientChannel() |
初始化 TcpClientChannel 類別的新執行個體。 |
TcpClientChannel(IDictionary, IClientChannelSinkProvider) |
使用指定的組態屬性和接收,初始化 TcpClientChannel 類別的新執行個體。 |
TcpClientChannel(String, IClientChannelSinkProvider) |
使用指定的名稱和接收,初始化 TcpClientChannel 類別的新執行個體。 |
TcpClientChannel()
初始化 TcpClientChannel 類別的新執行個體。
public:
TcpClientChannel();
public TcpClientChannel ();
Public Sub New ()
範例
下列程式代碼範例示範此建構函式的使用方式。
// Set up a client channel.
TcpClientChannel^ clientChannel = gcnew TcpClientChannel;
ChannelServices::RegisterChannel( clientChannel );
// Set up a client channel.
TcpClientChannel clientChannel = new TcpClientChannel();
ChannelServices.RegisterChannel(clientChannel);
備註
這個建構函式傳回之實例的 TcpClientChannel 組態屬性全都設定為其預設值。
適用於
TcpClientChannel(IDictionary, IClientChannelSinkProvider)
使用指定的組態屬性和接收,初始化 TcpClientChannel 類別的新執行個體。
public:
TcpClientChannel(System::Collections::IDictionary ^ properties, System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ sinkProvider);
public TcpClientChannel (System.Collections.IDictionary properties, System.Runtime.Remoting.Channels.IClientChannelSinkProvider sinkProvider);
new System.Runtime.Remoting.Channels.Tcp.TcpClientChannel : System.Collections.IDictionary * System.Runtime.Remoting.Channels.IClientChannelSinkProvider -> System.Runtime.Remoting.Channels.Tcp.TcpClientChannel
Public Sub New (properties As IDictionary, sinkProvider As IClientChannelSinkProvider)
參數
- properties
- IDictionary
IDictionary 集合,指定通道要使用的組態屬性值。
- sinkProvider
- IClientChannelSinkProvider
通道要使用的 IServerChannelSinkProvider 實作。
例外狀況
組態屬性的格式不正確。
範例
下列程式代碼範例示範如何使用這個建構函式來建立 TcpClientChannel 具有特定組態屬性的物件。
// Specify client channel properties.
IDictionary^ dict = gcnew Hashtable;
dict[ "port" ] = 9090;
dict[ "impersonationLevel" ] = "Identify";
dict[ "authenticationPolicy" ] = "AuthPolicy, Policy";
// Set up a client channel.
TcpClientChannel^ clientChannel = gcnew TcpClientChannel( dict, nullptr );
ChannelServices::RegisterChannel( clientChannel, false );
// Specify client channel properties.
IDictionary dict = new Hashtable();
dict["port"] = 9090;
dict["impersonationLevel"] = "Identify";
dict["authenticationPolicy"] = "AuthPolicy, Policy";
// Set up a client channel.
TcpClientChannel clientChannel = new TcpClientChannel(dict, null);
ChannelServices.RegisterChannel(clientChannel, false);
備註
如需通道組態屬性的詳細資訊,請參閱 通道和格式器組態屬性。
如果您不需要接收功能,請將 sinkProvider
參數設定為 null
。
另請參閱
適用於
TcpClientChannel(String, IClientChannelSinkProvider)
使用指定的名稱和接收,初始化 TcpClientChannel 類別的新執行個體。
public:
TcpClientChannel(System::String ^ name, System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ sinkProvider);
public TcpClientChannel (string name, System.Runtime.Remoting.Channels.IClientChannelSinkProvider sinkProvider);
new System.Runtime.Remoting.Channels.Tcp.TcpClientChannel : string * System.Runtime.Remoting.Channels.IClientChannelSinkProvider -> System.Runtime.Remoting.Channels.Tcp.TcpClientChannel
Public Sub New (name As String, sinkProvider As IClientChannelSinkProvider)
參數
- name
- String
通道的名稱。
- sinkProvider
- IClientChannelSinkProvider
通道要使用的 IClientChannelSinkProvider 實作。
範例
下列程式代碼範例示範如何建構 TcpClientChannel。
// Create the channel.
TcpClientChannel^ clientChannel = gcnew TcpClientChannel( "Client",nullptr );
// Create the channel.
TcpClientChannel clientChannel = new TcpClientChannel("Client", null);
備註
這個建構函式會使用 name
參數來設定 ChannelName 屬性。 如果您想要註冊多個通道,每個通道都必須有唯一的名稱。
如果您不需要接收功能,請將 sinkProvider
參數設定為 null
。