HttpClientChannel.Parse(String, String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Extrai o URI do canal e o URI do objeto bem conhecido remoto da URL especificada.
public:
virtual System::String ^ Parse(System::String ^ url, [Runtime::InteropServices::Out] System::String ^ % objectURI);
public string Parse (string url, out string objectURI);
abstract member Parse : string * string -> string
override this.Parse : string * string -> string
Public Function Parse (url As String, ByRef objectURI As String) As String
Parâmetros
- url
- String
A URL da qual extrair o URI do objeto remoto conhecido.
- objectURI
- String
Quando este método retorna, contém um String com o URI do objeto remoto conhecido. Este parâmetro é passado não inicializado.
Retornos
O URI do canal atual ou null
, se a URL especificada não for uma URL HTTP.
Implementações
Exemplos
O exemplo de código a seguir mostra como usar o método Parse. Este exemplo de código faz parte de um exemplo maior fornecido para a HttpClientChannel classe .
// Parse the channel's URI.
String^ objectUrl = L"http://localhost:9090/RemoteObject.rem";
String^ channelUri = clientChannel->Parse( objectUrl, objectUri );
Console::WriteLine( L"The object URL is {0}.", objectUrl );
Console::WriteLine( L"The object URI is {0}.", objectUri );
Console::WriteLine( L"The channel URI is {0}.", channelUri );
// Parse the channel's URI.
string objectUrl = "http://localhost:9090/RemoteObject.rem";
string channelUri = clientChannel.Parse(objectUrl, out objectUri);
Console.WriteLine("The object URL is {0}.", objectUrl);
Console.WriteLine("The object URI is {0}.", objectUri);
Console.WriteLine("The channel URI is {0}.", channelUri);