Condividi tramite


TcpServerChannel.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 seguente viene illustrato l'uso di questa proprietà.

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

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 TcpServerChannel è in ascolto.

Si applica a