ConfigurationLockCollectionとは? わかりやすく解説

ConfigurationLockCollection クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

ロックされている構成オブジェクトコレクション格納します。このクラス継承できません。

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

Public NotInheritable Class
 ConfigurationLockCollection
    Implements ICollection, IEnumerable
Dim instance As ConfigurationLockCollection
public sealed class ConfigurationLockCollection
 : ICollection, IEnumerable
public ref class ConfigurationLockCollection
 sealed : ICollection, IEnumerable
public final class ConfigurationLockCollection
 implements ICollection, IEnumerable
public final class ConfigurationLockCollection
 implements ICollection, IEnumerable
解説解説

構成ファイル構成セクションには、属性要素両方含まれています。ConfigurationLockCollection コレクションは、構成セクションロックされている属性用に存在し、ConfigurationElement クラスの LockAttributes プロパティ使用してアクセスます。もう 1 つConfigurationLockCollection コレクションは、構成セクションロックされている要素用に存在しConfigurationElement クラスの LockElements プロパティ使用してアクセスます。

使用例使用例

ConfigurationLockCollection 型を使用する方法次のコード例示します

Imports System
Imports System.Configuration
Imports System.Web.Configuration
Imports System.Collections
Imports System.Text

Namespace Samples.Aspnet.SystemWebConfiguration
  Class UsingConfigurationLockCollection
    Public Shared Sub Main()
      Try
        ' Set the path of the config file.
        Dim configPath As String
 = ""

        ' Get the Web application configuration object.
        Dim config As System.Configuration.Configuration
 = _
         WebConfigurationManager.OpenWebConfiguration(configPath)

        ' Get the section related object.
        Dim configSection As _
        AnonymousIdentificationSection = _
         CType(config.GetSection("system.web/anonymousIdentification"),
 _
         AnonymousIdentificationSection)

        ' Display title and info.
        Console.WriteLine("Configuration Info")
        Console.WriteLine()

        ' Display Config details.
        Console.WriteLine("File Path: {0}", _
          config.FilePath)
        Console.WriteLine("Section Path: {0}", _
          configSection.SectionInformation.Name)
        Console.WriteLine()

        ' Create a ConfigurationLockCollection object.
        Dim lockedAttribList As ConfigurationLockCollection
        lockedAttribList = configSection.LockAttributes

        ' Add an attribute to the lock collection.
        If Not (lockedAttribList.Contains("enabled"))
 Then
          lockedAttribList.Add("enabled")
        End If
        If Not (lockedAttribList.Contains("cookieless"))
 Then
          lockedAttribList.Add("cookieless")
        End If

        ' Count property.
        Console.WriteLine("Collection Count: {0}",
 _
         lockedAttribList.Count)

        ' AttributeList method.
        Console.WriteLine("AttributeList: {0}", _
         lockedAttribList.AttributeList)

        ' Contains method.
        Console.WriteLine("Contains 'enabled': {0}", _
         lockedAttribList.Contains("enabled"))

        ' HasParentElements property.
        Console.WriteLine("HasParentElements: {0}",
 _
         lockedAttribList.HasParentElements)

        ' IsModified property.
        Console.WriteLine("IsModified: {0}", _
         lockedAttribList.IsModified)

        ' IsReadOnly method. 
        Console.WriteLine("IsReadOnly: {0}", _
         lockedAttribList.IsReadOnly("enabled"))

        ' Remove a configuration object 
        ' from the collection.
        lockedAttribList.Remove("cookieless")

        ' Clear the collection.
        lockedAttribList.Clear()

        ' Create an ArrayList to contain
        ' the property items of the configuration
        ' section.
        Dim configPropertyAL As ArrayList =
 _
         New ArrayList(lockedAttribList.Count)
        For Each propertyItem As
 _
         PropertyInformation In _
         configSection.ElementInformation.Properties
          configPropertyAL.Add(propertyItem.Name.ToString())
        Next
        ' Copy the elements of the ArrayList to a string array.
        Dim myArr As [String]() = _
        CType(configPropertyAL.ToArray(GetType(String)),
 [String]())
        ' Create as a comma delimited list.
        Dim propList As String
 = String.Join(",", myArr)
        ' Lock the items in the list.
        lockedAttribList.SetFromList(propList)

      Catch e As Exception
        ' Validation failed.
        Console.WriteLine("Error: {0}", _
          e.Message.ToString())
      End Try

      ' Display and wait.
      Console.ReadLine()
    End Sub
  End Class
End Namespace
#region Using directives

using System;
using System.Configuration;
using System.Web.Configuration;
using System.Collections;
using System.Text;

#endregion

namespace Samples.Aspnet.SystemWebConfiguration
{
  class UsingConfigurationLockCollection
  {
    static void Main(string[]
 args)
    {
      try
      {
        // Set the path of the config file.
        string configPath = "";

        // Get the Web application configuration object.
        Configuration config =
          WebConfigurationManager.OpenWebConfiguration(configPath);

        // Get the section related object.
        AnonymousIdentificationSection configSection =
          (AnonymousIdentificationSection)config.GetSection
          ("system.web/anonymousIdentification");

        // Display title and info.
        Console.WriteLine("Configuration Info");
        Console.WriteLine();

        // Display Config details.
        Console.WriteLine("File Path: {0}",
          config.FilePath);
        Console.WriteLine("Section Path: {0}",
          configSection.SectionInformation.Name);
        Console.WriteLine();

        // Create a ConfigurationLockCollection object.
        ConfigurationLockCollection lockedAttribList;
        lockedAttribList = configSection.LockAttributes;

        // Add an attribute to the lock collection.
        if (!lockedAttribList.Contains("enabled"))
        {
          lockedAttribList.Add("enabled");
        }
        if (!lockedAttribList.Contains("cookieless"))
        {
          lockedAttribList.Add("cookieless");
        }

        // Count property.
        Console.WriteLine("Collection Count: {0}",
         lockedAttribList.Count);

        // AttributeList method.
        Console.WriteLine("AttributeList: {0}",
         lockedAttribList.AttributeList);

        // Contains method.
        Console.WriteLine("Contains 'enabled': {0}",
         lockedAttribList.Contains("enabled"));

        // HasParentElements property.
        Console.WriteLine("HasParentElements: {0}",
         lockedAttribList.HasParentElements);

        // IsModified property.
        Console.WriteLine("IsModified: {0}",
         lockedAttribList.IsModified);

        // IsReadOnly method. 
        Console.WriteLine("IsReadOnly: {0}",
         lockedAttribList.IsReadOnly("enabled"));

        // Remove a configuration object 
        // from the collection.
        lockedAttribList.Remove("cookieless");

        // Clear the collection.
        lockedAttribList.Clear();

        // Create an ArrayList to contain
        // the property items of the configuration
        // section.
        ArrayList configPropertyAL = new ArrayList(lockedAttribList.Count);
        foreach (PropertyInformation propertyItem in
          configSection.ElementInformation.Properties)
        {
          configPropertyAL.Add(propertyItem.Name.ToString());
        }
        // Copy the elements of the ArrayList to a string array.
        String[] myArr = (String[])configPropertyAL.ToArray(typeof(string));
        // Create as a comma delimited list.
        string propList = string.Join(",",
 myArr);
        // Lock the items in the list.
        lockedAttribList.SetFromList(propList);
      }

      catch (Exception e)
      {
        // Unknown error.
        Console.WriteLine(e.ToString());
      }

      // Display and wait.
      Console.ReadLine();
    }
  }
}
継承階層継承階層
System.Object
  System.Configuration.ConfigurationLockCollection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ConfigurationLockCollection メンバ
System.Configuration 名前空間
ConfigurationElement.LockAllAttributesExcept プロパティ
ConfigurationElement.LockAllElementsExcept プロパティ
ConfigurationElement クラス

ConfigurationLockCollection プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ AttributeList コレクション格納されている構成オブジェクトリスト取得します
パブリック プロパティ Count コレクション格納されている、ロックされている構成オブジェクトの数を取得します
パブリック プロパティ HasParentElements ロックされているオブジェクトコレクションに親要素があるかどうかを示す値を取得します
パブリック プロパティ IsModified コレクション変更されたかどうかを示す値を取得します
パブリック プロパティ IsSynchronized コレクション同期がとられているかどうかを示す値を取得します
パブリック プロパティ SyncRoot この ConfigurationLockCollection コレクションへのアクセス同期するために使用するオブジェクト取得します
参照参照

関連項目

ConfigurationLockCollection クラス
System.Configuration 名前空間
ConfigurationElement.LockAllAttributesExcept プロパティ
ConfigurationElement.LockAllElementsExcept プロパティ
ConfigurationElement クラス

ConfigurationLockCollection メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Add 構成オブジェクトを、コレクション追加することによってロックします
パブリック メソッド Clear コレクションからすべての構成オブジェクト消去します。
パブリック メソッド Contains 特定の構成オブジェクトロックされているかどうか検査します
パブリック メソッド CopyTo ConfigurationLockCollection コレクション全体互換性のある 1 次元Arrayコピーしますコピー操作は、コピー先の配列指定したインデックスから始まります
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetEnumerator この ConfigurationLockCollection コレクション反復処理するために使用される IEnumerator オブジェクト取得します
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド IsReadOnly 特定の構成オブジェクト読み取り専用かどうか検査します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド Remove 構成オブジェクトコレクションから削除します
パブリック メソッド SetFromList 指定されリスト基づいて構成オブジェクトセットロックします
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 System.Collections.ICollection.CopyTo ConfigurationLockCollection コレクション全体互換性のある 1 次元Arrayコピーしますコピー操作は、コピー先の配列指定したインデックスから始まります
参照参照

関連項目

ConfigurationLockCollection クラス
System.Configuration 名前空間
ConfigurationElement.LockAllAttributesExcept プロパティ
ConfigurationElement.LockAllElementsExcept プロパティ
ConfigurationElement クラス

ConfigurationLockCollection メンバ

ロックされている構成オブジェクトコレクション格納します。このクラス継承できません。

ConfigurationLockCollection データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ AttributeList コレクション格納されている構成オブジェクトリスト取得します
パブリック プロパティ Count コレクション格納されている、ロックされている構成オブジェクトの数を取得します
パブリック プロパティ HasParentElements ロックされているオブジェクトコレクションに親要素があるかどうかを示す値を取得します
パブリック プロパティ IsModified コレクション変更されたかどうかを示す値を取得します
パブリック プロパティ IsSynchronized コレクション同期がとられているかどうかを示す値を取得します
パブリック プロパティ SyncRoot この ConfigurationLockCollection コレクションへのアクセス同期するために使用するオブジェクト取得します
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Add 構成オブジェクトを、コレクション追加することによってロックします
パブリック メソッド Clear コレクションからすべての構成オブジェクト消去します。
パブリック メソッド Contains 特定の構成オブジェクトロックされているかどうか検査します
パブリック メソッド CopyTo ConfigurationLockCollection コレクション全体互換性のある 1 次元Arrayコピーしますコピー操作は、コピー先の配列指定したインデックスから始まります
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetEnumerator この ConfigurationLockCollection コレクション反復処理するために使用される IEnumerator オブジェクト取得します
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド IsReadOnly 特定の構成オブジェクト読み取り専用かどうか検査します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド Remove 構成オブジェクトコレクションから削除します
パブリック メソッド SetFromList 指定されリスト基づいて構成オブジェクトセットロックします
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 System.Collections.ICollection.CopyTo ConfigurationLockCollection コレクション全体互換性のある 1 次元Arrayコピーしますコピー操作は、コピー先の配列指定したインデックスから始まります
参照参照

関連項目

ConfigurationLockCollection クラス
System.Configuration 名前空間
ConfigurationElement.LockAllAttributesExcept プロパティ
ConfigurationElement.LockAllElementsExcept プロパティ
ConfigurationElement クラス


このページでは「.NET Framework クラス ライブラリ リファレンス」からConfigurationLockCollectionを検索した結果を表示しています。
Weblioに収録されているすべての辞書からConfigurationLockCollectionを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からConfigurationLockCollection を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「ConfigurationLockCollection」の関連用語

ConfigurationLockCollectionのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ConfigurationLockCollectionのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS