다음을 통해 공유


IpcChannel.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 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 IpcChannel 클래스입니다.

// Show the name of the channel.
Console::WriteLine( L"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합니다. 기본 이름은 "ipc"입니다.

적용 대상