ConfigurationEnumValue.Name 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구성 열거형 값의 이름을 가져옵니다.
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String
속성 값
구성 열거형 값의 이름입니다.
설명
구성 열거형 값은 스키마에 구성된 허용되는 값 목록에 대해 유효성을 검사하는 IIS 7 구성 시스템의 특성입니다.
다음 예제 스키마는 구성 열거형 값을 정의합니다.
<sectionSchema name="system.webServer/security/authentication/basicAuthentication">
<attribute name="enabled" type="bool" defaultValue="false" />
<attribute name="realm" type="string" />
<attribute name="defaultLogonDomain" type="string" />
<attribute name="logonMethod" type="enum" defaultValue="ClearText">
<enum name="Interactive" value="0" />
<enum name="Batch" value="1" />
<enum name="Network" value="2" />
<enum name="ClearText" value="3" />
</attribute>
</sectionSchema>
다음 구성 값은 위에 정의된 요소의 구성 시스템에 <basicAuthentication>
저장된 데이터를 나타냅니다.
<basicAuthentication defaultLogonDomain="FABRIKAM" enabled="true" logonMethod="Cleartext" realm="FABRIKAM" />