ActivatedClientTypeEntry.ApplicationUrl Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém a URL do aplicativo no qual ativar o tipo.
public:
property System::String ^ ApplicationUrl { System::String ^ get(); };
public string ApplicationUrl { get; }
member this.ApplicationUrl : string
Public ReadOnly Property ApplicationUrl As String
Valor da propriedade
A URL do aplicativo no qual ativar o tipo.
Exemplos
O exemplo de código a seguir mostra como usar a ApplicationUrl propriedade .
// Print the application URL.
Console::WriteLine( "Application url where the type is activated: {0}", activatedClientTypeEntry->ApplicationUrl->ToString() );
// Print the application URL.
Console.WriteLine(
"Application url where the type is activated: " +
myActivatedClientTypeEntry.ApplicationUrl);
' Print the application URL.
Console.WriteLine("Application url where the type is activated: " + _
myActivatedClientTypeEntry.ApplicationUrl)
Aplica-se a
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.