TcpServerChannel.Parse(String, String) 方法

定义

从指定 URL 提取信道 URI 和远程已知对象 URI。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

参数

url
String

从中提取远程已知对象的 URI 的 URL。The URL from which to extract the URI of the remote well-known object.

objectURI
String

当此方法返回时,包含含有远程已知对象的 URI 的 String 实例。When this method returns, contains a String instance that holds the URI of the remote well-known object. 此参数未经初始化即被传递。This parameter is passed uninitialized.

返回

String

当前信道的 URI。The URI of the current channel.

实现

示例

下面的代码示例演示如何使用此方法。The following code example shows the use this method.

// Parse the channel's URI.
array<String^>^urls = channel->GetUrlsForUri( L"RemoteObject.rem" );
if ( urls->Length > 0 )
{
   String^ objectUrl = urls[ 0 ];
   String^ objectUri;
   String^ channelUri = channel->Parse( objectUrl,  objectUri );
   Console::WriteLine( L"The object URI is {0}.", objectUri );
   Console::WriteLine( L"The channel URI is {0}.", channelUri );
   Console::WriteLine( L"The object URL is {0}.", objectUrl );
}
// Parse the channel's URI.
string[] urls = channel.GetUrlsForUri("RemoteObject.rem");
if (urls.Length > 0)
{
    string objectUrl = urls[0];
    string objectUri;
    string channelUri = channel.Parse(objectUrl, out objectUri);
    Console.WriteLine("The object URI is {0}.", objectUri);
    Console.WriteLine("The channel URI is {0}.", channelUri);
    Console.WriteLine("The object URL is {0}.", objectUrl);
}

注解

对象的 URI 是唯一标识特定对象实例的值。The URI of an object is a value that uniquely identifies a specific object instance.

适用于

另请参阅