Share via


HttpChannel.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);

適用対象

こちらもご覧ください