ClientTarget.UserAgent Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá identifikační název uživatelského agenta.
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
Hodnota vlastnosti
Identifikační název uživatelského agenta.
- Atributy
Příklady
Následující příklad kódu ukazuje, jak získat UserAgent z konfiguračního souboru existující webové aplikace.
// 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)
Poznámky
Vlastnost UserAgent odkazuje na userAgent
atribut elementu add
v oddílu clientTarget
konfiguračního souboru.
Výchozí nastavení konfigurace ASP.NET umožňují přizpůsobení stránek pro různé verze aplikace Microsoft Internet Explorer. Mezi nimi najdete alias uplevel
, který ASP.NET říká, aby klientovi odeslal HTML a ECMAScript podporovaný internet explorerem 4.0 a novějším, a downlevel
, který ASP.NET říká, že mají omezit KÓD HTML a skript na kódy podporované staršími prohlížeči než Internet Explorer 4.0.