ConfigurationElementCollection.CollectionType プロパティ

定義

ConfigurationElementCollection の型を取得します。

public:
 virtual property System::Configuration::ConfigurationElementCollectionType CollectionType { System::Configuration::ConfigurationElementCollectionType get(); };
public virtual System.Configuration.ConfigurationElementCollectionType CollectionType { get; }
member this.CollectionType : System.Configuration.ConfigurationElementCollectionType
Public Overridable ReadOnly Property CollectionType As ConfigurationElementCollectionType

プロパティ値

このコレクションの ConfigurationElementCollectionType

次のコード例は、 プロパティを取得する方法を CollectionType 示しています。

public override ConfigurationElementCollectionType CollectionType
{
    get
    {
        return ConfigurationElementCollectionType.AddRemoveClearMap;
    }
}
Public ReadOnly Property CollectionType() As ConfigurationElementCollectionType
    Get
        Return ConfigurationElementCollectionType.AddRemoveClearMap
    End Get
End Property

注釈

型は、 または AddRemoveClearMap フィールドのいずれかBasicMapになります。 詳細については、「ConfigurationElementCollectionType」を参照してください。

適用対象