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
속성 값
특정 사용자 에이전트를 참조하는 데 사용되는 이름입니다.
- 특성
예제
다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 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
ASP.NET HTML 및 Internet Explorer 6.0 이상 버전에서 지원 되는 ECMAScript를 보내도록 지시 하는 합니다.downlevel
HTML 및 브라우저에서 Internet Explorer 6.0 이전의 지원 되는 버전으로 스크립트를 제한 하는 ASP.NET을 알려줍니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET