Compartir a través de


IpcServerChannel.ChannelName Propiedad

Definición

Obtiene el nombre del canal actual.

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

Valor de propiedad

Instancia de String que contiene el nombre del canal.

Implementaciones

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad ChannelName.

// Show the name of the channel.
Console::WriteLine( L"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);

Comentarios

Cada canal registrado tiene un nombre único. El nombre se usa para recuperar un canal específico al llamar al GetChannel método . El nombre predeterminado es "ipc server".

Se aplica a