ClassPListInteger
Represents an integer Value from a PList
Definition
Namespace:CE.iPhone.PList
Assembly:ArtOfTest.WebAii.dll
Syntax:
public class PListInteger : PListElement<long>, IPListElement, IXmlSerializable, IEquatable<IPListElement>
Inheritance: objectPListElement<long>PListInteger
Implements:
Inherited Members
Constructors
PListInteger()
Initializes a new instance of the PListInteger class.
Declaration
public PListInteger()
PListInteger(long)
Initializes a new instance of the PListInteger class.
Declaration
public PListInteger(long value)
Parameters
value
The value of this element.
Properties
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.
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.