ActivatedClientTypeEntry.ApplicationUrl Propiedad

Definición

Obtiene la dirección URL de la aplicación en la que se va a activar el tipo.

public:
 property System::String ^ ApplicationUrl { System::String ^ get(); };
public string ApplicationUrl { get; }
member this.ApplicationUrl : string
Public ReadOnly Property ApplicationUrl As String

Valor de propiedad

Dirección URL de la aplicación en la que se activa el tipo.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad ApplicationUrl.

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

Se aplica a