This documentation is archived and is not being maintained.
TcpChannel::Parse Method
Visual Studio 2010
Extracts the channel URI and the remote well-known object URI from the specified URL.
Assembly: System.Runtime.Remoting (in System.Runtime.Remoting.dll)
[SecurityPermissionAttribute(SecurityAction::LinkDemand, Flags = SecurityPermissionFlag::Infrastructure, Infrastructure = true)] public: virtual String^ Parse( String^ url, [OutAttribute] String^% objectURI ) sealed
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.
Implements
IChannel::Parse(String, String%)The following code example shows how to use this method.
// Parse the channel's URI. array<String^>^ urls = serverChannel->GetUrlsForUri("RemoteObject.rem"); if (urls->Length > 0) { String^ objectUrl = urls[0]; String^ objectUri; String^ channelUri = serverChannel->Parse(objectUrl, 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 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: