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すときに特定のチャネルを取得するために使用されます。

適用対象