Condividi tramite


TcpChannel.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à

Object

Istanza ChannelDataStore contenente dati specifici del canale.

Implementazioni

Esempio

Nell'esempio di codice seguente viene illustrato come usare questa proprietà.

// Show the URIs associated with the channel.
ChannelDataStore^ data = (ChannelDataStore^) serverChannel->ChannelData;
for each (String^ uri in data->ChannelUris)
{
    Console::WriteLine("The channel URI is {0}.", uri);
}
// Show the URIs associated with the channel.
ChannelDataStore data = (ChannelDataStore) serverChannel.ChannelData;
foreach (string uri in data.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 in un'istanza di ChannelDataStore descrizione del canale a cui l'oggetto HttpServerChannel è in ascolto.

Si applica a