Condividi tramite


IpcServerChannel.ChannelData Proprietà

Definizione

Ottiene dati specifici del canale.

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

Valore della proprietà

Istanza ChannelDataStore contenente dati specifici del canale.

Implementazioni

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare la proprietà 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);
}

Commenti

Anche se restituito come istanza della classe, il valore di System.Object questa proprietà può essere sottoposto a cast in un'istanza di ChannelDataStore che descrive il canale a cui l'oggetto IpcServerChannel è in ascolto.

Si applica a