次の方法で共有


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

適用対象