ConfigurationSection.ShouldSerializeSectionInTargetVersion メソッド

定義

指定したターゲット バージョンの.NET Frameworkに対して構成オブジェクト階層をシリアル化するときに、現在ConfigurationSectionのインスタンスをシリアル化する必要があるかどうかを示します。

protected:
 virtual bool ShouldSerializeSectionInTargetVersion(System::Runtime::Versioning::FrameworkName ^ targetFramework);
protected public:
 virtual bool ShouldSerializeSectionInTargetVersion(System::Runtime::Versioning::FrameworkName ^ targetFramework);
protected virtual bool ShouldSerializeSectionInTargetVersion (System.Runtime.Versioning.FrameworkName targetFramework);
protected internal virtual bool ShouldSerializeSectionInTargetVersion (System.Runtime.Versioning.FrameworkName targetFramework);
abstract member ShouldSerializeSectionInTargetVersion : System.Runtime.Versioning.FrameworkName -> bool
override this.ShouldSerializeSectionInTargetVersion : System.Runtime.Versioning.FrameworkName -> bool
Protected Overridable Function ShouldSerializeSectionInTargetVersion (targetFramework As FrameworkName) As Boolean
Protected Friend Overridable Function ShouldSerializeSectionInTargetVersion (targetFramework As FrameworkName) As Boolean

パラメーター

targetFramework
FrameworkName

.NET Frameworkのターゲット バージョン。

戻り値

現在のセクションをシリアル化する必要がある場合は true。それ以外の場合は false

注釈

.NET Framework 4 以降のバージョンに対して作成される各構成セクションは、このメソッドを明示的にオーバーライドして を返すtrue必要がありますが、構成セクションが指定されたバージョンの.NET Frameworkに対して有効な場合に限ります。 以前のバージョンの.NET Framework用に作成された既存の構成セクションを変更する必要はありません。

基本型には、常に を返 trueすこのメソッドの既定の実装が含まれています。 構成セクションを実装し、このメソッドをオーバーライドしない場合、既定では、すべてのフレームワーク バージョンに対して構成セクションがシリアル化されます。

適用対象

こちらもご覧ください