다음을 통해 공유


IpcClientChannel.ChannelName 속성

정의

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

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

속성 값

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

구현

예제

다음 코드 예제에서는 ChannelName 속성을 사용하는 방법을 보여 줍니다.

// Show the name of the channel.
Console::WriteLine( L"The name of the channel is {0}.", clientChannel->ChannelName );
// Show the name of the channel.
Console.WriteLine("The name of the channel is {0}.",
    clientChannel.ChannelName);

설명

등록 된 모든 채널에는 고유한 이름이 있습니다. 이름을 호출 하는 경우 특정 채널 검색 되는 ChannelServices.GetChannel 메서드. 기본 이름은 "ipc 클라이언트"입니다.

적용 대상