다음을 통해 공유


TcpServerChannel.ChannelData 속성

정의

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

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

속성 값

채널 관련 데이터가 포함된 ChannelDataStore 인스턴스입니다.

구현

예제

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

// Show the URIs associated with the channel.
ChannelDataStore^ data = dynamic_cast<ChannelDataStore^>(serverChannel->ChannelData);
System::Collections::IEnumerator^ myEnum = data->ChannelUris->GetEnumerator();
while ( myEnum->MoveNext() )
{
   String^ uri = safe_cast<String^>(myEnum->Current);
   Console::WriteLine( uri );
}
// Show the URIs associated with the channel.
ChannelDataStore data = (ChannelDataStore) serverChannel.ChannelData;
foreach (string uri in data.ChannelUris)
{
    Console.WriteLine(uri);
}

설명

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

적용 대상