Compartilhar via


IpcClientChannel.ChannelName Propriedade

Definição

Obtém o nome do canal atual.

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

Valor da propriedade

Uma String instância que contém o nome do canal.

Implementações

Exemplos

O exemplo de código a seguir mostra como usar a ChannelName propriedade .

// Show the name of the channel.
Console::WriteLine( L"The name of the channel is {0}.", clientChannel->ChannelName );
// Show the name of the channel.
Console.WriteLine("The name of the channel is {0}.",
    clientChannel.ChannelName);

Comentários

Cada canal registrado tem um nome exclusivo. O nome é usado para recuperar um canal específico ao chamar o ChannelServices.GetChannel método . O nome padrão é "cliente ipc".

Aplica-se a