C# 클래스 Monobjc.Tools.PropertyList.PListDocument

Represents a PList document.
파일 보기 프로젝트 열기: Monobjc/monobjc-tools 1 사용 예제들

공개 메소드들

메소드 설명
LoadFromFile ( String path ) : PListDocument

Loads a PListDocument from a file.

LoadFromXml ( String content ) : PListDocument

Loads a PListDocument from a Xml content.

LoadFromXml ( XmlReader reader ) : PListDocument

Loads a PListDocument from a Xml content.

PListDocument ( ) : System

Initializes a new instance of the PListDocument class.

ToString ( ) : string

Returns a System.String that represents this instance.

WriteToFile ( String path ) : void

Writes this instance to a file.

WriteXml ( XmlWriter writer ) : void

Writes this instance to Xml stream.

비공개 메소드들

메소드 설명
Create ( String name ) : PListItemBase
PListDocument ( bool empty ) : System

Initializes a new instance of the PListDocument class.

메소드 상세

LoadFromFile() 공개 정적인 메소드

Loads a PListDocument from a file.
public static LoadFromFile ( String path ) : PListDocument
path String The path.
리턴 PListDocument

LoadFromXml() 공개 정적인 메소드

Loads a PListDocument from a Xml content.
public static LoadFromXml ( String content ) : PListDocument
content String The content.
리턴 PListDocument

LoadFromXml() 공개 정적인 메소드

Loads a PListDocument from a Xml content.
public static LoadFromXml ( XmlReader reader ) : PListDocument
reader XmlReader The reader.
리턴 PListDocument

PListDocument() 공개 메소드

Initializes a new instance of the PListDocument class.
public PListDocument ( ) : System
리턴 System

ToString() 공개 메소드

Returns a System.String that represents this instance.
public ToString ( ) : string
리턴 string

WriteToFile() 공개 메소드

Writes this instance to a file.
public WriteToFile ( String path ) : void
path String The path.
리턴 void

WriteXml() 공개 메소드

Writes this instance to Xml stream.
public WriteXml ( XmlWriter writer ) : void
writer System.Xml.XmlWriter The writer.
리턴 void