BuildProviderCollection クラス
アセンブリ: System.Web (system.web.dll 内)


BuildProviderCollection は、カスタム リソース ファイルをコンパイルするために使用します。ビルド プロバイダの数に制限はありません。BuildProviderCollection は、基になる構成ファイル内の実際の要素を参照しているわけではありません。このコレクションは、格納されているコンパイル情報に簡単にアクセスできるようにする構造体です。

このセクションには、2 つのコード例が用意されています。最初の例では、BuildProviderCollection クラスの複数のプロパティに対して、宣言によって値を指定する方法を示しています。2 つ目のコード例では、BuildProviderCollection クラスのメンバを使用する方法を示しています。
次の構成ファイルの例では、BuildProviderCollection クラスの複数のプロパティに対して、宣言によって値を指定する方法を示しています。
<system.web> <compilation> <buildProviders> <add extension=".aspx" type="System.Web.Compilation.PageBuildProvider" appliesTo="Web" /> <add extension=".ascx" type="System.Web.Compilation.UserControlBuildProvider" appliesTo="Web" /> <add extension=".master" type="System.Web.Compilation.MasterPageBuildProvider" appliesTo="Web" /> <add extension=".asix" type="System.Web.Compilation.ImageGeneratorBuildProvider" appliesTo="Web" /> <add extension=".asmx" type="System.Web.Compilation.WebServiceBuildProvider" appliesTo="Web" /> <add extension=".ashx" type="System.Web.Compilation.WebHandlerBuildProvider" appliesTo="Web" /> <add extension=".soap" type="System.Web.Compilation.WebServiceBuildProvider" appliesTo="Web" /> <add extension=".resx" type="System.Web.Compilation.ResXBuildProvider" appliesTo="Resources" /> <add extension=".resources" type="System.Web.Compilation.ResourcesBuildProvider" appliesTo="Code, Resources" /> <add extension=".wsdl" type="System.Web.Compilation.WsdlBuildProvider" appliesTo="Code" /> <add extension=".xsd" type="System.Web.Compilation.XsdBuildProvider" appliesTo="Code" /> </buildProviders> </compilation> </system.web>
BuildProviderCollection クラスのメンバを使用する方法を次のコード例に示します。
Imports System Imports System.Configuration Imports System.Web.Configuration Namespace Samples.Aspnet.SystemWebConfiguration Class UsingBuildProviderCollection 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 _ System.Web.Configuration.CompilationSection = _ CType(config.GetSection("system.web/compilation"), _ System.Web.Configuration.CompilationSection) ' Display title and info. Console.WriteLine("ASP.NET Configuration Info") Console.WriteLine() ' Display Config details. Console.WriteLine("File Path: {0}", _ config.FilePath) Console.WriteLine("Section Path: {0}", _ configSection.SectionInformation.Name) ' Display BuildProviderCollection count. Console.WriteLine("BuildProviderCollection count: {0}", _ configSection.BuildProviders.Count) ' Create a new BuildProvider. Dim myBuildProvider As BuildProvider = _ New BuildProvider(".myres", _ "System.Web.Compilation.ResourcesBuildProvider") ' Add an BuildProvider to the collection. configSection.BuildProviders.Add(myBuildProvider) ' Create a second BuildProvider. Dim myBuildProvider2 As BuildProvider = _ New BuildProvider(".myres2", _ "System.Web.Compilation.ResourcesBuildProvider") ' Add an BuildProvider to the collection. configSection.BuildProviders.Add(myBuildProvider2) ' BuildProvider Collection Dim i = 1 Dim j = 1 For Each BuildProviderItem As _ BuildProvider In configSection.BuildProviders Console.WriteLine() Console.WriteLine("BuildProvider {0} Details:", i) Console.WriteLine("Type: {0}", _ BuildProviderItem.ElementInformation.Type) Console.WriteLine("Source: {0}", _ BuildProviderItem.ElementInformation.Source) Console.WriteLine("LineNumber: {0}", _ BuildProviderItem.ElementInformation.LineNumber) Console.WriteLine("Properties Count: {0}", _ BuildProviderItem.ElementInformation.Properties.Count) j = 1 For Each propertyItem As PropertyInformation In _ BuildProviderItem.ElementInformation.Properties Console.WriteLine("Property {0} Name: {1}", j, _ propertyItem.Name) Console.WriteLine("Property {0} Value: {1}", j, _ propertyItem.Value) j = j + 1 Next i = i + 1 Next ' Remove an BuildProvider. configSection.BuildProviders.Remove(".myres2") ' Remove an BuildProvider. configSection.BuildProviders.RemoveAt( _ configSection.BuildProviders.Count - 1) ' Update if not locked. If Not configSection.SectionInformation.IsLocked Then config.Save() Console.WriteLine("** Configuration updated.") Else Console.WriteLine("** Could not update, section is locked.") End If Catch e As Exception ' Unknown error. Console.WriteLine(e.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; #endregion namespace Samples.Aspnet.SystemWebConfiguration { class UsingBuildProviderCollection { 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. CompilationSection configSection = (CompilationSection)config.GetSection ("system.web/compilation"); // Display title and info. Console.WriteLine("ASP.NET Configuration Info"); Console.WriteLine(); // Display Config details. Console.WriteLine("File Path: {0}", config.FilePath); Console.WriteLine("Section Path: {0}", configSection.SectionInformation.Name); // Display BuildProviderCollection count. Console.WriteLine("BuildProviderCollection count: {0}", configSection.BuildProviders.Count); // Create a new BuildProvider. BuildProvider myBuildProvider = new BuildProvider(".myres", "System.Web.Compilation.ResourcesBuildProvider"); // Add an BuildProvider to the collection. configSection.BuildProviders.Add(myBuildProvider); // Create a second BuildProvider. BuildProvider myBuildProvider2 = new BuildProvider(".myres2", "System.Web.Compilation.ResourcesBuildProvider"); // Add an BuildProvider to the collection. configSection.BuildProviders.Add(myBuildProvider2); // BuildProvider Collection int i = 1; int j = 1; foreach (BuildProvider BuildProviderItem in configSection.BuildProviders) { Console.WriteLine(); Console.WriteLine("BuildProviders {0} Details:", i); Console.WriteLine("Type: {0}", BuildProviderItem.ElementInformation.Type); Console.WriteLine("Source: {0}", BuildProviderItem.ElementInformation.Source); Console.WriteLine("LineNumber: {0}", BuildProviderItem.ElementInformation.LineNumber); Console.WriteLine("Properties Count: {0}", BuildProviderItem.ElementInformation.Properties.Count); j = 1; foreach (PropertyInformation propertyItem in BuildProviderItem.ElementInformation.Properties) { Console.WriteLine("Property {0} Name: {1}", j, propertyItem.Name); Console.WriteLine("Property {0} Value: {1}", j, propertyItem.Value); j++; } i++; } // Remove a BuildProvider. configSection.BuildProviders.Remove(".myres2"); // Remove an BuildProvider. configSection.BuildProviders.RemoveAt( configSection.BuildProviders.Count - 1); // Update if not locked. if (!configSection.SectionInformation.IsLocked) { config.Save(); Console.WriteLine("** Configuration updated."); } else { Console.WriteLine("** Could not update, section is locked."); } } catch (Exception e) { // Unknown error. Console.WriteLine(e.ToString()); } // Display and wait. Console.ReadLine(); } } }

System.Configuration.ConfigurationElement
System.Configuration.ConfigurationElementCollection
System.Web.Configuration.BuildProviderCollection


Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


BuildProviderCollection コンストラクタ
アセンブリ: System.Web (system.web.dll 内)


Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


BuildProviderCollection プロパティ

名前 | 説明 | |
---|---|---|
![]() | CollectionType | ConfigurationElementCollection の型を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | Count | コレクション内の要素の数を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ElementInformation | ConfigurationElement オブジェクトのカスタマイズできない情報と機能を格納する ElementInformation オブジェクトを取得します。 ( ConfigurationElement から継承されます。) |
![]() | EmitClear | コレクションが削除されているかどうかを指定します。 ( ConfigurationElementCollection から継承されます。) |
![]() | IsSynchronized | コレクションへのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | Item | オーバーロードされます。 指定された BuildProvider コレクション項目を取得します。 |
![]() | LockAllAttributesExcept | ロックされている属性のコレクションを取得します。 ( ConfigurationElement から継承されます。) |
![]() | LockAllElementsExcept | ロックされている要素のコレクションを取得します。 ( ConfigurationElement から継承されます。) |
![]() | LockAttributes | ロックされている属性のコレクションを取得します。 ( ConfigurationElement から継承されます。) |
![]() | LockElements | ロックされている要素のコレクションを取得します。 ( ConfigurationElement から継承されます。) |
![]() | LockItem | 要素がロックされているかどうかを示す値を取得または設定します。 ( ConfigurationElement から継承されます。) |
![]() | SyncRoot | ConfigurationElementCollection へのアクセスを同期するために使用するオブジェクトを取得します。 ( ConfigurationElementCollection から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | AddElementName | 派生クラスでオーバーライドされると、ConfigurationElementCollection での追加操作に関連付ける ConfigurationElement の名前を取得または設定します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ClearElementName | 派生クラスでオーバーライドされると、ConfigurationElementCollection での消去操作に関連付ける ConfigurationElement の名前を取得または設定します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ElementName | 派生クラスでオーバーライドされると、構成ファイル内のこの要素のコレクションを識別するために使用する名前を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ElementProperty | ConfigurationElement オブジェクト自体を表す ConfigurationElementProperty オブジェクトを取得します。 ( ConfigurationElement から継承されます。) |
![]() | EvaluationContext | ConfigurationElement オブジェクトの ContextInformation オブジェクトを取得します。 ( ConfigurationElement から継承されます。) |
![]() | Item | オーバーロードされます。 指定された BuildProvider コレクション項目を取得します。 |
![]() | Properties | プロパティのコレクションを取得します。 ( ConfigurationElement から継承されます。) |
![]() | RemoveElementName | 派生クラスでオーバーライドされると、ConfigurationElementCollection での削除操作に関連付ける ConfigurationElement の名前を取得または設定します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ThrowOnDuplicate | 重複する ConfigurationElement を ConfigurationElementCollection に追加しようとしたときに、例外をスローするかどうかを示す値を取得します。 ( ConfigurationElementCollection から継承されます。) |

BuildProviderCollection メソッド

名前 | 説明 | |
---|---|---|
![]() | Add | BuildProvider オブジェクトを BuildProviderCollection に追加します。 |
![]() | Clear | BuildProviderCollection からすべての BuildProvider オブジェクトを削除します。 |
![]() | CopyTo | ConfigurationElementCollection の内容を配列にコピーします。 ( ConfigurationElementCollection から継承されます。) |
![]() | Equals | オーバーロードされます。 ConfigurationElementCollection と指定したオブジェクトを比較します。 ( ConfigurationElementCollection から継承されます。) |
![]() | GetEnumerator | ConfigurationElementCollection の反復処理に使用する IEnumerator を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | GetHashCode | ConfigurationElementCollection インスタンスを表す一意の値を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | IsReadOnly | ConfigurationElementCollection オブジェクトが読み取り専用かどうかを示す値を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | Remove | BuildProviderCollection から BuildProvider オブジェクトを削除します。 |
![]() | RemoveAt | 指定したインデックス位置にある BuildProvider オブジェクトを BuildProviderCollection から削除します。 |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | BaseAdd | オーバーロードされます。 派生クラスでオーバーライドされると、ConfigurationElement を ConfigurationElementCollection インスタンスに追加します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseClear | コレクションからすべての構成要素オブジェクトを削除します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseGet | オーバーロードされます。 指定したインデックス位置にある ConfigurationElement を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseGetAllKeys | ConfigurationElementCollection に格納されているすべての構成要素のキーの配列を返します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseGetKey | 指定したインデックス位置にある ConfigurationElement のキーを取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseIndexOf | 指定した ConfigurationElement のインデックス。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseIsRemoved | 指定したキーを持つ ConfigurationElement が ConfigurationElementCollection から削除されているかどうかを示す値を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseRemove | ConfigurationElement をコレクションから削除します。 ( ConfigurationElementCollection から継承されます。) |
![]() | BaseRemoveAt | 指定したインデックス位置にある ConfigurationElement を削除します。 ( ConfigurationElementCollection から継承されます。) |
![]() | CreateNewElement | オーバーロードされます。 派生クラスでオーバーライドされると、新しい ConfigurationElement を作成します。 ( ConfigurationElementCollection から継承されます。) |
![]() | DeserializeElement | 構成ファイルから XML を読み取ります。 ( ConfigurationElement から継承されます。) |
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | GetElementKey | 派生クラスでオーバーライドされると、指定した構成要素の要素キーを取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | Init | ConfigurationElement オブジェクトを初期状態に設定します。 ( ConfigurationElement から継承されます。) |
![]() | InitializeDefault | ConfigurationElement オブジェクトの既定の値セットを初期化するために使用します。 ( ConfigurationElement から継承されます。) |
![]() | IsElementName | 指定した ConfigurationElement が ConfigurationElementCollection に存在するかどうかを示します。 ( ConfigurationElementCollection から継承されます。) |
![]() | IsElementRemovable | 指定した ConfigurationElement を ConfigurationElementCollection から削除できるかどうかを示す値を取得します。 ( ConfigurationElementCollection から継承されます。) |
![]() | IsModified | 派生クラスでオーバーライドされると、この ConfigurationElementCollection が最後に保存された後または読み込まれた後に、変更されているかどうかを示します。 ( ConfigurationElementCollection から継承されます。) |
![]() | ListErrors | この ConfigurationElement オブジェクトおよびすべてのサブ要素の無効なプロパティのエラーを、渡されたリストに追加します。 ( ConfigurationElement から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |
![]() | OnDeserializeUnrecognizedAttribute | 逆シリカル化中に不明な属性が発生したかどうかを示す値を取得します。 ( ConfigurationElement から継承されます。) |
![]() | OnDeserializeUnrecognizedElement | 構成システムが例外をスローするようにします。 ( ConfigurationElementCollection から継承されます。) |
![]() | OnRequiredPropertyNotFound | 必須プロパティが見つからなかったかどうかを示す値を取得します。 ( ConfigurationElement から継承されます。) |
![]() | PostDeserialize | 逆シリアル化後に呼び出されます。 ( ConfigurationElement から継承されます。) |
![]() | PreSerialize | シリアル化前に呼び出されます。 ( ConfigurationElement から継承されます。) |
![]() | Reset | 派生クラスでオーバーライドされると、ConfigurationElementCollection を変更されていない状態にリセットします。 ( ConfigurationElementCollection から継承されます。) |
![]() | ResetModified | 派生クラスでオーバーライドされると、IsModified プロパティの値を false にリセットします。 ( ConfigurationElementCollection から継承されます。) |
![]() | SerializeElement | 派生クラスでオーバーライドされると、構成データを構成ファイルの XML 要素に書き込みます。 ( ConfigurationElementCollection から継承されます。) |
![]() | SerializeToXmlElement | 派生クラスに実装されている場合、この構成要素の外側のタグを構成ファイルに書き込みます。 ( ConfigurationElement から継承されます。) |
![]() | SetPropertyValue | プロパティを指定した値に設定します。 ( ConfigurationElement から継承されます。) |
![]() | SetReadOnly | ConfigurationElementCollection オブジェクトとすべてのサブ要素の IsReadOnly プロパティを設定します。 ( ConfigurationElementCollection から継承されます。) |
![]() | Unmerge | 構成階層の異なるレベルの構成情報をマージした効果を反転させます。 ( ConfigurationElementCollection から継承されます。) |

BuildProviderCollection メンバ
BuildProvider オブジェクトのコレクションを表します。このクラスは継承できません。
BuildProviderCollection データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | CollectionType | ConfigurationElementCollection の型を取得します。(ConfigurationElementCollection から継承されます。) |
![]() | Count | コレクション内の要素の数を取得します。(ConfigurationElementCollection から継承されます。) |
![]() | ElementInformation | ConfigurationElement オブジェクトのカスタマイズできない情報と機能を格納する ElementInformation オブジェクトを取得します。 (ConfigurationElement から継承されます。) |
![]() | EmitClear | コレクションが削除されているかどうかを指定します。(ConfigurationElementCollection から継承されます。) |
![]() | IsSynchronized | コレクションへのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。(ConfigurationElementCollection から継承されます。) |
![]() | Item | オーバーロードされます。 指定された BuildProvider コレクション項目を取得します。 |
![]() | LockAllAttributesExcept | ロックされている属性のコレクションを取得します。(ConfigurationElement から継承されます。) |
![]() | LockAllElementsExcept | ロックされている要素のコレクションを取得します。(ConfigurationElement から継承されます。) |
![]() | LockAttributes | ロックされている属性のコレクションを取得します。 (ConfigurationElement から継承されます。) |
![]() | LockElements | ロックされている要素のコレクションを取得します。(ConfigurationElement から継承されます。) |
![]() | LockItem | 要素がロックされているかどうかを示す値を取得または設定します。(ConfigurationElement から継承されます。) |
![]() | SyncRoot | ConfigurationElementCollection へのアクセスを同期するために使用するオブジェクトを取得します。(ConfigurationElementCollection から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | AddElementName | 派生クラスでオーバーライドされると、ConfigurationElementCollection での追加操作に関連付ける ConfigurationElement の名前を取得または設定します。 (ConfigurationElementCollection から継承されます。) |
![]() | ClearElementName | 派生クラスでオーバーライドされると、ConfigurationElementCollection での消去操作に関連付ける ConfigurationElement の名前を取得または設定します。 (ConfigurationElementCollection から継承されます。) |
![]() | ElementName | 派生クラスでオーバーライドされると、構成ファイル内のこの要素のコレクションを識別するために使用する名前を取得します。(ConfigurationElementCollection から継承されます。) |
![]() | ElementProperty | ConfigurationElement オブジェクト自体を表す ConfigurationElementProperty オブジェクトを取得します。(ConfigurationElement から継承されます。) |
![]() | EvaluationContext | ConfigurationElement オブジェクトの ContextInformation オブジェクトを取得します。(ConfigurationElement から継承されます。) |
![]() | Item | オーバーロードされます。 指定された BuildProvider コレクション項目を取得します。 |
![]() | Properties | プロパティのコレクションを取得します。(ConfigurationElement から継承されます。) |
![]() | RemoveElementName | 派生クラスでオーバーライドされると、ConfigurationElementCollection での削除操作に関連付ける ConfigurationElement の名前を取得または設定します。 (ConfigurationElementCollection から継承されます。) |
![]() | ThrowOnDuplicate | 重複する ConfigurationElement を ConfigurationElementCollection に追加しようとしたときに、例外をスローするかどうかを示す値を取得します。(ConfigurationElementCollection から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Add | BuildProvider オブジェクトを BuildProviderCollection に追加します。 |
![]() | Clear | BuildProviderCollection からすべての BuildProvider オブジェクトを削除します。 |
![]() | CopyTo | ConfigurationElementCollection の内容を配列にコピーします。 (ConfigurationElementCollection から継承されます。) |
![]() | Equals | オーバーロードされます。 ConfigurationElementCollection と指定したオブジェクトを比較します。 (ConfigurationElementCollection から継承されます。) |
![]() | GetEnumerator | ConfigurationElementCollection の反復処理に使用する IEnumerator を取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | GetHashCode | ConfigurationElementCollection インスタンスを表す一意の値を取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | IsReadOnly | ConfigurationElementCollection オブジェクトが読み取り専用かどうかを示す値を取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | Remove | BuildProviderCollection から BuildProvider オブジェクトを削除します。 |
![]() | RemoveAt | 指定したインデックス位置にある BuildProvider オブジェクトを BuildProviderCollection から削除します。 |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | BaseAdd | オーバーロードされます。 派生クラスでオーバーライドされると、ConfigurationElement を ConfigurationElementCollection インスタンスに追加します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseClear | コレクションからすべての構成要素オブジェクトを削除します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseGet | オーバーロードされます。 指定したインデックス位置にある ConfigurationElement を取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseGetAllKeys | ConfigurationElementCollection に格納されているすべての構成要素のキーの配列を返します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseGetKey | 指定したインデックス位置にある ConfigurationElement のキーを取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseIndexOf | 指定した ConfigurationElement のインデックス。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseIsRemoved | 指定したキーを持つ ConfigurationElement が ConfigurationElementCollection から削除されているかどうかを示す値を取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseRemove | ConfigurationElement をコレクションから削除します。 (ConfigurationElementCollection から継承されます。) |
![]() | BaseRemoveAt | 指定したインデックス位置にある ConfigurationElement を削除します。 (ConfigurationElementCollection から継承されます。) |
![]() | CreateNewElement | オーバーロードされます。 派生クラスでオーバーライドされると、新しい ConfigurationElement を作成します。 (ConfigurationElementCollection から継承されます。) |
![]() | DeserializeElement | 構成ファイルから XML を読み取ります。 (ConfigurationElement から継承されます。) |
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | GetElementKey | 派生クラスでオーバーライドされると、指定した構成要素の要素キーを取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | Init | ConfigurationElement オブジェクトを初期状態に設定します。 (ConfigurationElement から継承されます。) |
![]() | InitializeDefault | ConfigurationElement オブジェクトの既定の値セットを初期化するために使用します。 (ConfigurationElement から継承されます。) |
![]() | IsElementName | 指定した ConfigurationElement が ConfigurationElementCollection に存在するかどうかを示します。 (ConfigurationElementCollection から継承されます。) |
![]() | IsElementRemovable | 指定した ConfigurationElement を ConfigurationElementCollection から削除できるかどうかを示す値を取得します。 (ConfigurationElementCollection から継承されます。) |
![]() | IsModified | 派生クラスでオーバーライドされると、この ConfigurationElementCollection が最後に保存された後または読み込まれた後に、変更されているかどうかを示します。 (ConfigurationElementCollection から継承されます。) |
![]() | ListErrors | この ConfigurationElement オブジェクトおよびすべてのサブ要素の無効なプロパティのエラーを、渡されたリストに追加します。 (ConfigurationElement から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |
![]() | OnDeserializeUnrecognizedAttribute | 逆シリカル化中に不明な属性が発生したかどうかを示す値を取得します。 (ConfigurationElement から継承されます。) |
![]() | OnDeserializeUnrecognizedElement | 構成システムが例外をスローするようにします。 (ConfigurationElementCollection から継承されます。) |
![]() | OnRequiredPropertyNotFound | 必須プロパティが見つからなかったかどうかを示す値を取得します。 (ConfigurationElement から継承されます。) |
![]() | PostDeserialize | 逆シリアル化後に呼び出されます。 (ConfigurationElement から継承されます。) |
![]() | PreSerialize | シリアル化前に呼び出されます。 (ConfigurationElement から継承されます。) |
![]() | Reset | 派生クラスでオーバーライドされると、ConfigurationElementCollection を変更されていない状態にリセットします。 (ConfigurationElementCollection から継承されます。) |
![]() | ResetModified | 派生クラスでオーバーライドされると、IsModified プロパティの値を false にリセットします。 (ConfigurationElementCollection から継承されます。) |
![]() | SerializeElement | 派生クラスでオーバーライドされると、構成データを構成ファイルの XML 要素に書き込みます。 (ConfigurationElementCollection から継承されます。) |
![]() | SerializeToXmlElement | 派生クラスに実装されている場合、この構成要素の外側のタグを構成ファイルに書き込みます。 (ConfigurationElement から継承されます。) |
![]() | SetPropertyValue | プロパティを指定した値に設定します。 (ConfigurationElement から継承されます。) |
![]() | SetReadOnly | ConfigurationElementCollection オブジェクトとすべてのサブ要素の IsReadOnly プロパティを設定します。 (ConfigurationElementCollection から継承されます。) |
![]() | Unmerge | 構成階層の異なるレベルの構成情報をマージした効果を反転させます。 (ConfigurationElementCollection から継承されます。) |

- BuildProviderCollectionのページへのリンク