System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion 方法
上一篇:System.Configuration.AppSettingsSection.ShouldSerializeElementInTargetVersion 方法
下一篇:System.Configuration.AppSettingsSection.ShouldSerializeSectionInTargetVersion 方法
方法描述
指示在为指定目标版本的 .NET Framework 序列化配置对象层次结构时,是否应序列化指定属性。
语法定义(C# System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion 方法 的用法)
protected internal virtual bool ShouldSerializePropertyInTargetVersion( ConfigurationProperty property, string propertyName, FrameworkName targetFramework, ConfigurationElement parentConfigurationElement )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
property | System-Configuration-ConfigurationProperty | 作为候选序列化对象的 ConfigurationProperty 对象。 |
propertyName | System-String | ConfigurationProperty 对象出现在 XML 中的名称。 |
targetFramework | System-Runtime-Versioning-FrameworkName | .NET Framework 的目标版本。 |
parentConfigurationElement | System-Configuration-ConfigurationElement | 属性的父元素。 |
返回值 | System.Boolean | 如果应序列化 property,则为 true;否则为 false。 |
提示和注释
为 .NET Framework 4 版 及更高版本创建的每个配置节必须显式重写此方法,并返回 true,但只有在指定属性对指定版本的 .NET Framework有效时。 不需要更改为早期版本的 .NET Framework 创建的现有配置节。
基类型包含此方法的默认实现,该实现总是返回 true。 如果您实施配置节,且不重写此方法,则默认情况下配置节组中包含的所有配置属性将为所有 Framework 版本进行序列化。
System.Configuration.ConfigurationSection.ShouldSerializePropertyInTargetVersion 方法例子
版本信息
.NET Framework 受以下版本支持:4 .NET Framework Client Profile 受以下版本支持:4
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
上一篇:System.Configuration.AppSettingsSection.ShouldSerializeElementInTargetVersion 方法
下一篇:System.Configuration.AppSettingsSection.ShouldSerializeSectionInTargetVersion 方法