다음을 통해 공유


ClientTarget.Alias 속성

정의

사용자 에이전트의 별칭 이름입니다.

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

속성 값

특정 사용자 에이전트를 참조하는 데 사용되는 이름입니다.

특성

예제

다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 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 구성 기본값 다음 별칭을 다음과 같습니다.

  • uplevelASP.NET HTML 및 Internet Explorer 6.0 이상 버전에서 지원 되는 ECMAScript를 보내도록 지시 하는 합니다.

  • downlevelHTML 및 브라우저에서 Internet Explorer 6.0 이전의 지원 되는 버전으로 스크립트를 제한 하는 ASP.NET을 알려줍니다.

적용 대상

추가 정보