TcpServerChannel.Parse(String, String) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Wyodrębnia identyfikator URI kanału i zdalny dobrze znany identyfikator URI obiektu z określonego adresu 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
Parametry
- url
- String
Adres URL, z którego ma wyodrębnić identyfikator URI zdalnego dobrze znanego obiektu.
- objectURI
- String
Gdy ta metoda zostanie zwrócona, zawiera wystąpienie, które zawiera String identyfikator URI zdalnego dobrze znanego obiektu. Ten parametr jest przekazywany jako niezainicjowany.
Zwraca
Identyfikator URI bieżącego kanału.
Implementuje
Przykłady
Poniższy przykład kodu przedstawia użycie tej metody.
// 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);
}
Uwagi
Identyfikator URI obiektu to wartość, która jednoznacznie identyfikuje określone wystąpienie obiektu.