IpcServerChannel.Parse(String, String) Méthode

Définition

Extrait l’URI du canal et l’URI d’objet connu à distance à 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 connu distant.

objectURI
String

Lorsque cette méthode est retournée, contient une String instance qui contient l’URI de l’objet connu à distance.

Retours

URI du canal actuel.

Implémente

Exemples

L’exemple de code suivant montre comment utiliser la Parse méthode.

// Parse the channel's URI.
array<String^>^urls = serverChannel->GetUrlsForUri( L"RemoteObject.rem" );
if ( urls->Length > 0 )
{
   String^ objectUrl = urls[ 0 ];
   String^ objectUri;
   String^ channelUri = serverChannel->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 = serverChannel.GetUrlsForUri("RemoteObject.rem");
if (urls.Length > 0)
{
    string objectUrl = urls[0];
    string objectUri;
    string channelUri = serverChannel.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);
}

Remarques

L’URI d’un objet est une valeur qui identifie de manière unique une instance d’objet spécifique.

S’applique à