C# 클래스 NSoft.NFramework.Configurations.SerializableConfigurationSection

Represents a configuration section that can be serialized and deserialized to XML.
상속: System.Configuration.ConfigurationSection, IXmlSerializable
파일 보기 프로젝트 열기: debop/NFramework

공개 메소드들

메소드 설명
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