TcpChannel.ChannelName Proprietà

Definizione

Ottiene il nome del canale corrente.

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

Valore della proprietà

Oggetto String che contiene il nome del canale.

Implementazioni

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare questa proprietà.

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

Commenti

Ogni canale registrato ha un nome univoco. Il nome viene usato per recuperare un canale specifico quando si chiama GetChannel. Per impostare la ChannelName proprietà, assegnare il valore alla proprietà indicizzata "name" nel dizionario passato al TcpChannel(IDictionary, IClientChannelSinkProvider, IServerChannelSinkProvider) costruttore.

Si applica a