Sdílet prostřednictvím


HttpChannel.Parse(String, String) Metoda

Definice

Extrahuje identifikátor URI kanálu a identifikátor URI vzdáleného známého objektu ze zadané adresy URL.

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

Parametry

url
String

Adresa URL, ze které chcete extrahovat identifikátor URI vzdáleného dobře známého objektu.

objectURI
String

Když tato metoda vrátí, obsahuje , String který obsahuje identifikátor URI vzdáleného dobře známého objektu. Tento parametr se předává neinicializovaný.

Návraty

Identifikátor URI aktuálního kanálu nebo null pokud zadaná adresa URL není adresa URL protokolu HTTP.

Implementuje

Příklady

Následující příklad kódu ukazuje, jak použít metodu Parse . Tento příklad kódu je součástí většího příkladu HttpClientChannel pro třídu .

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

Platí pro

Viz také