ClientTarget.Alias プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザー エージェントのエイリアスを取得します。
public:
property System::String ^ Alias { System::String ^ get(); };
[System.Configuration.ConfigurationProperty("alias", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Alias { get; }
[<System.Configuration.ConfigurationProperty("alias", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Alias : string
Public ReadOnly Property Alias As String
プロパティ値
特定のユーザー エージェントを参照するために使用する名前。
- 属性
例
次のコード例は、既存の Web アプリケーションの構成ファイルから を Alias 取得する方法を示しています。
// Get the first client target
// in the collection.
clientTarget = clientTargets[0];
// Get the alias.
alias = clientTarget.Alias;
msg = String.Format(
"Alias: {0}\n",
alias);
' Get the first client target
' in the collection.
clientTarget = clientTargets(0)
' Get the alias.
aliasStr = clientTarget.Alias
msg = String.Format( _
"Alias: {0}" + ControlChars.Lf, aliasStr)
注釈
プロパティは Alias 、 alias
構成ファイルの add
セクションの clientTarget
要素の 属性を参照します。
ASP.NET 構成の既定値には、次のエイリアスが含まれます。
uplevel
は、Internet Explorer 6.0 以降のバージョンでサポートされている HTML と ECMAScript を送信するように ASP.NET に指示します。downlevel
は、html とスクリプトを Internet Explorer 6.0 より前のブラウザーでサポートされているバージョンに制限するように ASP.NET に指示します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET