Class
PListFill

Represents a fill element in a PList

Definition

Namespace:CE.iPhone.PList

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public class PListFill : IPListElement, IXmlSerializable

Inheritance: objectPListFill

Implements: IPListElementIXmlSerializable

Constructors

PListFill()

Declaration

cs-api-definition
public PListFill()

Properties

IsBinaryUnique

Gets a value indicating whether this instance is written only once in binary mode.

Declaration

cs-api-definition
public bool IsBinaryUnique { get; }

Property Value

bool

true this instance is written only once in binary mode; otherwise, false.

Implements IPListElement.IsBinaryUnique

Tag

Gets the Xml tag of this element.

Declaration

cs-api-definition
public string Tag { get; }

Property Value

string

The Xml tag of this element.

Implements IPListElement.Tag

TypeCode

Gets the binary typecode of this element.

Declaration

cs-api-definition
public byte TypeCode { get; }

Property Value

byte

The binary typecode of this element.

Implements IPListElement.TypeCode

Methods

GetPListElementCount()

Gets the count of PList elements in this element.

Declaration

cs-api-definition
public int GetPListElementCount()

Returns

int

The count of PList elements in this element.

Implements IPListElement.GetPListElementCount()

Remarks

Provided for internal use only.

GetPListElementLength()

Gets the length of this PList element.

Declaration

cs-api-definition
public int GetPListElementLength()

Returns

int

The length of this PList element.

Implements IPListElement.GetPListElementLength()

Remarks

Provided for internal use only.

GetSchema()

This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the XmlSchemaProviderAttribute to the class.

Declaration

cs-api-definition
public XmlSchema GetSchema()

Returns

XmlSchema

An XmlSchema that describes the XML representation of the object that is produced by the WriteXml(XmlWriter) method and consumed by the ReadXml(XmlReader) method.

Implements IXmlSerializable.GetSchema()

ReadBinary(PListBinaryReader)

Reads this element binary from the reader.

Declaration

cs-api-definition
public void ReadBinary(PListBinaryReader reader)

Parameters

reader

PListBinaryReader

The from which the element is read.

Implements IPListElement.ReadBinary(PListBinaryReader)

Remarks

Provided for internal use only.

ReadXml(XmlReader)

Generates an object from its XML representation.

Declaration

cs-api-definition
public void ReadXml(XmlReader reader)

Parameters

reader

XmlReader

The XmlReader stream from which the object is deserialized.

Implements IXmlSerializable.ReadXml(XmlReader)

WriteBinary(PListBinaryWriter)

Writes this element binary to the writer.

Declaration

cs-api-definition
public void WriteBinary(PListBinaryWriter writer)

Parameters

writer

PListBinaryWriter

The to which the element is written.

Implements IPListElement.WriteBinary(PListBinaryWriter)

Remarks

Provided for internal use only.

WriteXml(XmlWriter)

Converts an object into its XML representation.

Declaration

cs-api-definition
public void WriteXml(XmlWriter writer)

Parameters

writer

XmlWriter

The XmlWriter stream to which the object is serialized.

Implements IXmlSerializable.WriteXml(XmlWriter)