HttpChannel.Parse Method
Extracts the channel URI and the remote well-known object URI from the specified URL.
Namespace: System.Runtime.Remoting.Channels.Http
Assembly: System.Runtime.Remoting (in System.Runtime.Remoting.dll)
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.Infrastructure, Infrastructure = true)] public string Parse( string url, out string objectURI )
Parameters
- url
- Type: System.String
The URL from which to extract the URI of the remote well-known object.
- objectURI
- Type: System.String
When this method returns, contains a String that holds the URI of the remote well-known object. This parameter is passed uninitialized.
Return Value
Type: System.StringThe URI of the current channel, or null if the specified URL is not an HTTP URL.
Implements
IChannel.Parse(String, String)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 = "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);
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.