ClassPListData
Represents a Byte[] Value from a PList
Definition
Namespace:CE.iPhone.PList
Assembly:ArtOfTest.WebAii.dll
Syntax:
public class PListData : PListElement<byte[]>, IPListElement, IXmlSerializable, IEquatable<IPListElement>
Inheritance: objectPListElement<byte[]>PListData
Implements:
Inherited Members
Constructors
PListData()
Initializes a new instance of the PListData class.
Declaration
public PListData()
PListData(byte[])
Initializes a new instance of the PListData class.
Declaration
public PListData(byte[] value)
Parameters
value
byte[]
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 (encoded as Base64), 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 (encoded as Base64).
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.