TcpClientChannel.ChannelName 属性

定义

获取当前信道的名称。

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 and priority of the channel.
Console::WriteLine( "Channel Name: {0}", clientChannel->ChannelName );
Console::WriteLine( "Channel Priority: {0}", clientChannel->ChannelPriority );
// Show the name and priority of the channel.
Console.WriteLine("Channel Name: {0}", clientChannel.ChannelName);
Console.WriteLine("Channel Priority: {0}", clientChannel.ChannelPriority);

注解

每个已注册的通道都有一个唯一的名称。 调用 时 GetChannel,该名称用于检索特定通道。

适用于