Udostępnij za pośrednictwem


IpcServerChannel.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

W poniższym przykładzie kodu pokazano, jak używać ChannelData właściwości .

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

Uwagi

Mimo że jest zwracana jako wystąpienie System.Object klasy, wartość tej właściwości można rzutować na wystąpienie ChannelDataStore , które opisuje kanał, do którego IpcServerChannel obiekt nasłuchuje.

Dotyczy