ActivatedClientTypeEntry.ApplicationUrl Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'URL de l'application dans laquelle le type doit être activé.
public:
property System::String ^ ApplicationUrl { System::String ^ get(); };
public string ApplicationUrl { get; }
member this.ApplicationUrl : string
Public ReadOnly Property ApplicationUrl As String
Valeur de propriété
URL de l'application dans laquelle le type doit être activé.
Exemples
L'exemple de code suivant montre comment utiliser la propriété 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)
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.