HttpChannel.Parse(String, String) Method

Definition

Extracts the channel URI and the remote well-known object URI from the specified 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

Parameters

url
String

The URL from which to extract the URI of the remote well-known object.

objectURI
String

When this method returns, contains a String that holds the URI of the remote well-known object. This parameter is passed uninitialized.

Returns

The URI of the current channel, or null if the specified URL is not an HTTP URL.

Implements

Examples

The following code example shows how to use the Parse method. This code example is part of a larger example provided for the HttpClientChannel class.

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

Applies to

See also