Udostępnij za pośrednictwem


HttpServerChannel.GetChannelUri Metoda

Definicja

Zwraca identyfikator URI bieżącego kanału.

public:
 System::String ^ GetChannelUri();
public string GetChannelUri ();
member this.GetChannelUri : unit -> string
Public Function GetChannelUri () As String

Zwraca

Identyfikator URI bieżącego kanału.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać GetChannelUri metody . Ten przykład kodu jest częścią większego przykładu podanego HttpServerChannel dla klasy.

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

Dotyczy