Compartilhar via


HttpServerChannel.GetChannelUri Método

Definição

Retorna o URI do canal atual.

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

Retornos

O URI do canal atual.

Exemplos

O exemplo de código a seguir mostra como usar o método GetChannelUri. Este exemplo de código faz parte de um exemplo maior fornecido para a HttpServerChannel classe .

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

Aplica-se a