C# Class Monobjc.Tools.PropertyList.PListItemBase

Desribes an arbitrary element in an PList file.
Exibir arquivo Open project: Monobjc/monobjc-tools Class Usage Examples

Public Methods

Method Description
AppendChild ( PListItemBase child ) : void

Appends the child to this instance.

SetValue ( String value ) : void

Sets the value of this instance.

WriteXml ( XmlWriter writer ) : void

Writes this instance to Xml stream.

Method Details

AppendChild() public abstract method

Appends the child to this instance.
public abstract AppendChild ( PListItemBase child ) : void
child PListItemBase The child.
return void

SetValue() public abstract method

Sets the value of this instance.
public abstract SetValue ( String value ) : void
value String The value.
return void

WriteXml() public abstract method

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