다음을 통해 공유


ConfigurationEnumValue.Name 속성

정의

구성 열거형 값의 이름을 가져옵니다.

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

적용 대상