共用方式為


TcpChannel.ChannelName 屬性

定義

取得目前通道的名稱。

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

屬性值

String,包含通道的名稱。

實作

範例

下列程式代碼範例示範如何使用這個屬性。

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

備註

每個已註冊的通道都有唯一的名稱。 呼叫 時 GetChannel,會使用名稱來擷取特定通道。 若要設定 ChannelName 屬性,請在傳遞至建構函式的字典中,將值指派給 TcpChannel(IDictionary, IClientChannelSinkProvider, IServerChannelSinkProvider) 「name」 索引屬性。

適用於