Condividi tramite


IpcChannel.ChannelData Proprietà

Definizione

Ottiene i 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. Questo esempio di codice fa parte di un esempio più ampio fornito per la IpcChannel classe .

// Show the URIs associated with the channel.
System::Runtime::Remoting::Channels::ChannelDataStore^ channelData = (System::Runtime::Remoting::Channels::ChannelDataStore^)serverChannel->ChannelData;
for each (String^ uri in channelData->ChannelUris)
{
   Console::WriteLine("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 di System.Object, il valore di questa proprietà può essere sottoposto a cast a un'istanza di ChannelDataStore che descrive il canale a cui l'oggetto HttpServerChannel è in ascolto.

Si applica a