다음을 통해 공유


TcpClientChannel.ChannelName 속성

정의

현재 채널의 이름을 가져옵니다.

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

속성 값

String

채널 이름이 들어 있는 String 인스턴스입니다.

구현

예제

다음 코드 예제에서는이 속성의 사용을 보여 줍니다.

// Show the name and priority of the channel.
Console::WriteLine( "Channel Name: {0}", clientChannel->ChannelName );
Console::WriteLine( "Channel Priority: {0}", clientChannel->ChannelPriority );
// Show the name and priority of the channel.
Console.WriteLine("Channel Name: {0}", clientChannel.ChannelName);
Console.WriteLine("Channel Priority: {0}", clientChannel.ChannelPriority);

설명

등록 된 모든 채널에는 고유한 이름이 있습니다. 이름을 호출 하는 경우 특정 채널을 검색 하는 GetChannel합니다.

적용 대상