ClientTarget.UserAgent 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 le nom d'identification de l'agent utilisateur (user agent).
public:
property System::String ^ UserAgent { System::String ^ get(); };
[System.Configuration.ConfigurationProperty("userAgent", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string UserAgent { get; }
[<System.Configuration.ConfigurationProperty("userAgent", IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.UserAgent : string
Public ReadOnly Property UserAgent As String
Valeur de propriété
Nom d'identification de l'agent utilisateur (user agent).
- Attributs
Exemples
L’exemple de code suivant montre comment obtenir le UserAgent à partir du fichier de configuration d’une application web existante.
// Get the first client target
// in the collection.
clientTarget = clientTargets[0];
// Get he user agent.
userAgent = clientTarget.UserAgent;
msg = String.Format(
"User Agent: {0}\n",
userAgent);
' Get the first client target
' in the collection.
clientTarget = clientTargets(0)
' Get he user agent.
userAgent = clientTarget.UserAgent
msg = String.Format( _
"User Agent: {0}" + ControlChars.Lf, userAgent)
Remarques
La UserAgent propriété fait référence à l’attribut userAgent
de l’élément add
dans la clientTarget
section du fichier de configuration.
Les ASP.NET configuration par défaut autorisent la personnalisation des pages pour différentes versions de Microsoft Internet Explorer. Parmi eux, vous trouverez l’alias uplevel
, qui indique à ASP.NET d’envoyer le code HTML client et ECMAScript pris en charge par Internet Explorer 4.0 et versions ultérieures, et downlevel
, qui indique à ASP.NET de limiter le code HTML et le script à ceux pris en charge par les navigateurs antérieurs à Internet Explorer 4.0.