IpcChannel.GetUrlsForUri(String) Método

Definição

Retorna uma matriz de todas as URLs de um objeto com o URI especificado, hospedado no IpcChannel atual.Returns an array of all the URLs for an object with the specified URI, hosted on the current IpcChannel.

public:
 virtual cli::array <System::String ^> ^ GetUrlsForUri(System::String ^ objectURI);
public string[] GetUrlsForUri (string objectURI);
abstract member GetUrlsForUri : string -> string[]
override this.GetUrlsForUri : string -> string[]
Public Function GetUrlsForUri (objectURI As String) As String()

Parâmetros

objectURI
String

O URI do objeto para o qual as URLs são necessárias.The URI of the object for which URLs are required.

Retornos

String[]

Uma matriz de URLs para um objeto com o URI especificado, hospedado no IpcChannel atual.An array of the URLs for an object with the specified URI, hosted on the current IpcChannel.

Implementações

Exemplos

O exemplo de código a seguir mostra como usar o método GetUrlsForUri.The following code example shows how to use the GetUrlsForUri method. Este exemplo de código faz parte de um exemplo maior fornecido para a IpcChannel classe.This code example is part of a larger example provided for the IpcChannel class.

// 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);
}

Comentários

Esse método é usado pelo ChannelServices.GetUrlsForObject .This method is used by ChannelServices.GetUrlsForObject.

Aplica-se a