IpcClientChannel.Parse(String, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Extrait l'URI du canal et de l'objet connu distant à partir de l'URL spécifiée.
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
Paramètres
- url
- String
URL à partir de laquelle extraire l'URI de l'objet.
- objectURI
- String
Cette méthode retourne une instance de String contenant l'URI de l'objet connu distant. Ce paramètre est passé sans être initialisé.
Retours
String qui contient l'URI du canal.
Implémente
Exemples
L'exemple de code suivant montre comment utiliser la méthode Parse.
// 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);