TcpChannel.ChannelName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前信道的名称。
public:
property System::String ^ ChannelName { System::String ^ get(); };
public string ChannelName { get; }
member this.ChannelName : string
Public ReadOnly Property ChannelName As String
属性值
一个 String 包含信道名称。
实现
示例
下面的代码示例演示如何使用此属性。
// Show the name of the channel.
Console::WriteLine("The name of the channel is {0}.",
serverChannel->ChannelName);
// Show the name of the channel.
Console.WriteLine("The name of the channel is {0}.",
serverChannel.ChannelName);
注解
每个已注册的通道都有一个唯一的名称。 调用 时 GetChannel,该名称用于检索特定通道。 若要设置 ChannelName 属性,请将值分配给传递给构造函数的字典中的“name”索引属性 TcpChannel(IDictionary, IClientChannelSinkProvider, IServerChannelSinkProvider) 。