TcpChannel.ChannelName Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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.