IpcClientChannel.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 zdalnego dobrze znanego identyfikatora 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 być wyodrębnione identyfikator URI obiektu.
- objectURI
- String
Gdy ta metoda zwróci, String wystąpienie, które przechowuje identyfikator URI zdalnego dobrze znanego obiektu. Ten parametr jest przekazywany niezainicjowany.
Zwraca
Element String zawierający identyfikator URI kanału.
Implementuje
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Parse metody .
// Parse the object URL.
String^ objectUrl = L"ipc://localhost:9090/RemoteObject.rem";
String^ objectUri;
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 object URL.
string objectUrl = "ipc://localhost:9090/RemoteObject.rem";
string objectUri;
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);