HttpServerChannel.ChannelScheme Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le type d'écouteur auquel se raccorder (par exemple, « http »).
public:
property System::String ^ ChannelScheme { System::String ^ get(); };
public string ChannelScheme { get; }
member this.ChannelScheme : string
Public ReadOnly Property ChannelScheme As String
Valeur de propriété
Type d'écouteur auquel se raccorder.
Implémente
Exemples
L'exemple de code suivant montre comment utiliser la propriété ChannelScheme. Cet exemple de code fait partie d’un exemple plus grand fourni pour 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);
Remarques
Cette valeur ne tient pas compte de la casse.