다음을 통해 공유


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 속성을 "name" 값 인덱싱된 속성에 전달 된 사전에 할당 된 TcpChannel(IDictionary, IClientChannelSinkProvider, IServerChannelSinkProvider) 생성자.

적용 대상