Udostępnij za pośrednictwem


TcpServerChannel.ChannelData Właściwość

Definicja

Pobiera dane specyficzne dla kanału.

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

Wartość właściwości

ChannelDataStore Wystąpienie zawierające dane specyficzne dla kanału.

Implementuje

Przykłady

Poniższy przykład kodu przedstawia użycie tej właściwości.

// 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);
}

Uwagi

Mimo że jest zwracana jako wystąpienie System.Objectklasy , wartość tej właściwości można rzutować na wystąpienie ChannelDataStore opisywania kanału, do którego TcpServerChannel obiekt nasłuchuje.

Dotyczy