ClassPListBool
Represents a Boolean Value from a PList
Definition
Namespace:CE.iPhone.PList
Assembly:ArtOfTest.WebAii.dll
Syntax:
public class PListBool : PListElement<bool>, IPListElement, IXmlSerializable, IEquatable<IPListElement>
Inheritance: objectPListElement<bool>PListBool
Implements:
Inherited Members
Constructors
PListBool()
Initializes a new instance of the PListBool class.
Declaration
public PListBool()
PListBool(bool)
Initializes a new instance of the PListBool class.
Declaration
public PListBool(bool value)
Parameters
value
The Value of this element
Properties
IsBinaryUnique
Gets a value indicating whether this instance is written only once in binary mode.
Declaration
public override bool IsBinaryUnique { get; }
Property Value
true this instance is written only once in binary mode; otherwise, false.
Overrides
Tag
Gets the Xml tag of this element.
Declaration
public override string Tag { get; }
Property Value
The Xml tag of this element.
Overrides
TypeCode
Gets the binary typecode of this element.
Declaration
public override byte TypeCode { get; }
Property Value
The binary typecode of this element.
Overrides
Methods
GetPListElementLength()
Gets the length of this PList element.
Declaration
public override int GetPListElementLength()
Returns
The length of this PList element.
Overrides
Remarks
Provided for internal use only.
Parse(string)
Parses the specified value from a given String, read from Xml.
Declaration
protected override void Parse(string value)
Parameters
value
The String whis is parsed.
Overrides
ReadBinary(PListBinaryReader)
Reads this element binary from the reader.
Declaration
public override void ReadBinary(PListBinaryReader reader)
Parameters
reader
The from which the element is read.
Overrides
Remarks
Provided for internal use only.
ReadXml(XmlReader)
Generates an object from its XML representation.
ToXmlString()
Gets the XML String representation of the Value.
Declaration
protected override string ToXmlString()
Returns
The XML String representation of the Value.
Overrides
WriteBinary(PListBinaryWriter)
Writes this element binary to the writer.
Declaration
public override void WriteBinary(PListBinaryWriter writer)
Parameters
writer
The to which the element is written.
Overrides
Remarks
Provided for internal use only.
WriteXml(XmlWriter)
Converts an object into its XML representation.