Sdílet prostřednictvím


TcpClientChannel.ChannelName Vlastnost

Definice

Získá název aktuálního kanálu.

public:
 property System::String ^ ChannelName { System::String ^ get(); };
public string ChannelName { get; }
member this.ChannelName : string
Public ReadOnly Property ChannelName As String

Hodnota vlastnosti

Instance String , která obsahuje název kanálu.

Implementuje

Příklady

Následující příklad kódu ukazuje použití této vlastnosti.

// 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);

Poznámky

Každý registrovaný kanál má jedinečný název. Název se používá k načtení konkrétního kanálu při volání GetChannel.

Platí pro