Condividi tramite


ActivatedClientTypeEntry.ApplicationUrl Proprietà

Definizione

Ottiene l'URL dell'applicazione in cui attivare il tipo.

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

Valore della proprietà

URL dell'applicazione in cui attivare il tipo.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la ApplicationUrl proprietà .

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

Si applica a