ConfigurationSectionGroup.ShouldSerializeSectionGroupInTargetVersion 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示在为指定目标版本的.NET Framework序列化配置对象层次结构时,是否应序列化当前ConfigurationSectionGroup实例。
protected:
virtual bool ShouldSerializeSectionGroupInTargetVersion(System::Runtime::Versioning::FrameworkName ^ targetFramework);
protected public:
virtual bool ShouldSerializeSectionGroupInTargetVersion(System::Runtime::Versioning::FrameworkName ^ targetFramework);
protected virtual bool ShouldSerializeSectionGroupInTargetVersion (System.Runtime.Versioning.FrameworkName targetFramework);
protected internal virtual bool ShouldSerializeSectionGroupInTargetVersion (System.Runtime.Versioning.FrameworkName targetFramework);
abstract member ShouldSerializeSectionGroupInTargetVersion : System.Runtime.Versioning.FrameworkName -> bool
override this.ShouldSerializeSectionGroupInTargetVersion : System.Runtime.Versioning.FrameworkName -> bool
Protected Overridable Function ShouldSerializeSectionGroupInTargetVersion (targetFramework As FrameworkName) As Boolean
Protected Friend Overridable Function ShouldSerializeSectionGroupInTargetVersion (targetFramework As FrameworkName) As Boolean
参数
- targetFramework
- FrameworkName
.NET Framework的目标版本。
返回
如果应序列化当前节组,则为 true
;否则为 false
。
注解
为 .NET Framework 4 及更高版本创建的每个配置节组都必须显式重写此方法并返回 true
,但前提是该节组对指定版本的.NET Framework有效。 无需更改为早期版本的.NET Framework创建的现有配置节组。
基类型包含此方法的默认实现,该实现始终返回 true
。 换句话说,如果配置节组实现程序不重写此方法,则默认情况下将针对所有框架版本序列化配置节组。