다음을 통해 공유


IpcServerChannel.ChannelData 속성

정의

채널 관련 데이터를 가져옵니다.

public:
 property System::Object ^ ChannelData { System::Object ^ get(); };
public object ChannelData { get; }
member this.ChannelData : obj
Public ReadOnly Property ChannelData As Object

속성 값

채널 관련 데이터가 들어 있는 ChannelDataStore 인스턴스입니다.

구현

예제

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

// Show the URIs associated with the channel.
System::Runtime::Remoting::Channels::ChannelDataStore^ channelData = 
   static_cast<System::Runtime::Remoting::Channels::ChannelDataStore^>
      (serverChannel->ChannelData);
System::Collections::IEnumerator^ myEnum = channelData->ChannelUris->GetEnumerator();
while ( myEnum->MoveNext() )
{
   String^ uri = safe_cast<String^>( myEnum->Current );
   Console::WriteLine( L"The channel URI is {0}.",uri );
}
// Show the URIs associated with the channel.
System.Runtime.Remoting.Channels.ChannelDataStore channelData =
    (System.Runtime.Remoting.Channels.ChannelDataStore)
    serverChannel.ChannelData;
foreach (string uri in channelData.ChannelUris)
{
    Console.WriteLine("The channel URI is {0}.", uri);
}

설명

인스턴스로 반환 되더라도 합니다 System.Object 클래스에서이 속성의 값의 인스턴스로 캐스팅할 수 ChannelDataStore 는 채널을 설명 하는 IpcServerChannel 개체에서 수신 대기 합니다.

적용 대상