Partager via


IpcClientChannel.ChannelName Propriété

Définition

Obtient le nom du canal en cours.

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

Valeur de propriété

Instance de String contenant le nom du canal.

Implémente

Exemples

L'exemple de code suivant montre comment utiliser la propriété ChannelName.

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

Remarques

Chaque canal inscrit a un nom unique. Le nom est utilisé pour récupérer un canal spécifique lors de l’appel de la ChannelServices.GetChannel méthode. Le nom par défaut est « client ipc ».

S’applique à