HttpServerChannel.ChannelScheme Proprietà

Definizione

Ottiene il tipo di listener con cui eseguire l'hook, ad esempio "http".

public:
 property System::String ^ ChannelScheme { System::String ^ get(); };
public string ChannelScheme { get; }
member this.ChannelScheme : string
Public ReadOnly Property ChannelScheme As String

Valore della proprietà

Tipo di listener nel quale effettuare l'hook.

Implementazioni

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare la proprietà ChannelScheme. Questo esempio di codice fa parte di un esempio più grande fornito per la HttpServerChannel classe.

// Display the channel's scheme.
Console::WriteLine( L"The channel scheme is {0}.", serverChannel->ChannelScheme );
// Display the channel's scheme.
Console.WriteLine("The channel scheme is {0}.",
    serverChannel.ChannelScheme);

Commenti

Questo valore non è distinzione tra maiuscole e minuscole.

Si applica a