C# Class Monobjc.Tools.Xcode.PBXDocument

Datei anzeigen Open project: Monobjc/monobjc-tools Class Usage Examples

Public Methods

Method Description
Load ( String content ) : PBXDocument

Loads the specified content.

Load ( TextReader reader ) : PBXDocument

Loads the specified reader.

LoadFromFile ( String path ) : PBXDocument

Loads from file.

PBXDocument ( ) : System

Initializes a new instance of the PBXDocument class.

Write ( ProjectWriter writer ) : void

Writes the specified writer.

WriteToFile ( String path ) : void

Writes to file.

Method Details

Load() public static method

Loads the specified content.
public static Load ( String content ) : PBXDocument
content String The content.
return PBXDocument

Load() public static method

Loads the specified reader.
public static Load ( TextReader reader ) : PBXDocument
reader TextReader The reader.
return PBXDocument

LoadFromFile() public static method

Loads from file.
public static LoadFromFile ( String path ) : PBXDocument
path String The path.
return PBXDocument

PBXDocument() public method

Initializes a new instance of the PBXDocument class.
public PBXDocument ( ) : System
return System

Write() public method

Writes the specified writer.
public Write ( ProjectWriter writer ) : void
writer ProjectWriter The writer.
return void

WriteToFile() public method

Writes to file.
public WriteToFile ( String path ) : void
path String The path.
return void