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
。