Class
PListReal

Represents a double Value from a PList

Definition

Constructors

PListReal()

Initializes a new instance of the PListReal class.

Declaration

cs-api-definition
public PListReal()

PListReal(double)

Initializes a new instance of the PListReal class.

Declaration

cs-api-definition
public PListReal(double value)

Parameters

value

double

The value of this element.

Properties

Tag

Gets the Xml tag of this element.

Declaration

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

Property Value

string

The Xml tag of this element.

Overrides PListElement<double>.Tag

TypeCode

Gets the binary typecode of this element.

Declaration

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

Property Value

byte

The binary typecode of this element.

Overrides PListElement<double>.TypeCode

Value

Gets or sets the value of this element.

Declaration

cs-api-definition
public override double Value { get; set; }

Property Value

double

The value of this element.

Overrides PListElement<double>.Value

Methods

GetPListElementLength()

Gets the length of this PList element.

Declaration

cs-api-definition
public override int GetPListElementLength()

Returns

int

The length of this PList element.

Overrides PListElement<double>.GetPListElementLength()

Remarks

Provided for internal use only.

Parse(string)

Parses the specified value from a given String, read from Xml.

Declaration

cs-api-definition
protected override void Parse(string value)

Parameters

value

string

The String whis is parsed.

Overrides PListElement<double>.Parse(string)

ReadBinary(PListBinaryReader)

Reads this element binary from the reader.

Declaration

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

Parameters

reader

PListBinaryReader

The from which the element is read.

Overrides PListElement<double>.ReadBinary(PListBinaryReader)

Remarks

Provided for internal use only.

ToXmlString()

Gets the XML String representation of the Value.

Declaration

cs-api-definition
protected override string ToXmlString()

Returns

string

The XML String representation of the Value.

Overrides PListElement<double>.ToXmlString()

WriteBinary(PListBinaryWriter)

Writes this element binary to the writer.

Declaration

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

Parameters

writer

PListBinaryWriter

The to which the element is written.

Overrides PListElement<double>.WriteBinary(PListBinaryWriter)

Remarks

Provided for internal use only.