C# Класс NSoft.NFramework.Configurations.SerializableConfigurationSection

Represents a configuration section that can be serialized and deserialized to XML.
Наследование: System.Configuration.ConfigurationSection, IXmlSerializable
Показать файл Открыть проект

Открытые методы

Метод Описание
GetSchema ( ) : XmlSchema

Returns the XML schema for the configuration section.

ReadXml ( XmlReader reader ) : void

Updates the configuration section with the values from an XmlReader.

WriteXml ( XmlWriter writer ) : void

Writes the configuration section values as an XML element to an XmlWriter.

Описание методов

GetSchema() публичный Метод

Returns the XML schema for the configuration section.
public GetSchema ( ) : XmlSchema
Результат System.Xml.Schema.XmlSchema

ReadXml() публичный Метод

Updates the configuration section with the values from an XmlReader.
public ReadXml ( XmlReader reader ) : void
reader System.Xml.XmlReader The that reads the configuration source located at the element that describes the configuration section.
Результат void

WriteXml() публичный Метод

Writes the configuration section values as an XML element to an XmlWriter.
public WriteXml ( XmlWriter writer ) : void
writer System.Xml.XmlWriter The that writes to the configuration source.
Результат void