共用方式為


HttpClientChannel.Parse(String, String) 方法

定義

從指定的 URL 擷取通道 URI 和遠端已知物件 URI。

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

參數

url
String

要從中擷取遠端已知物件 URI 的來源 URL。

objectURI
String

當這個方法傳回時,包含存有遠端已知物件 URI 的 String。 這個參數會以未初始化的狀態傳遞。

傳回

目前通道的 URI,如果指定的 URL 不是 HTTP URL 則為 null

實作

範例

下列程式碼範例示範如何使用 Parse 方法。 此程式代碼範例是針對 類別提供的較大範例的 HttpClientChannel 一部分。

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

適用於

另請參閱