Compartir a través de


TcpServerChannel.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 el uso de esta propiedad.

// Show the name and priority of the channel.
Console::WriteLine( "Channel Name: {0}", serverChannel->ChannelName );
Console::WriteLine( "Channel Priority: {0}", serverChannel->ChannelPriority );
// Show the name and priority of the channel.
Console.WriteLine("Channel Name: {0}", serverChannel.ChannelName);
Console.WriteLine("Channel Priority: {0}", serverChannel.ChannelPriority);

Comentarios

Cada canal registrado tiene un nombre único. El nombre se usa para recuperar un canal específico al llamar a GetChannel.

Se aplica a