Udostępnij za pośrednictwem


ClientTarget.UserAgent Właściwość

Definicja

Pobiera nazwę identyfikacji agenta użytkownika.

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

Wartość właściwości

Nazwa identyfikacji agenta użytkownika.

Atrybuty

Przykłady

Poniższy przykład kodu pokazuje, jak pobrać element UserAgent z pliku konfiguracji istniejącej aplikacji internetowej.


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

Uwagi

Właściwość UserAgent odwołuje się do userAgent atrybutu add elementu w clientTarget sekcji pliku konfiguracji.

Ustawienia domyślne konfiguracji ASP.NET umożliwiają dostosowywanie stron dla różnych wersji programu Microsoft Internet Explorer. Wśród nich znajduje się alias uplevel, który informuje ASP.NET o wysyłaniu klienta HTML i ECMAScript obsługiwanych przez program Internet Explorer 4.0 i nowszych oraz downlevel, który informuje ASP.NET o ograniczeniu kodu HTML i skryptu do tego obsługiwanego przez wcześniejsze przeglądarki niż Internet Explorer 4.0.

Dotyczy

Zobacz też