Amount of bytes this ByteBuffer currently holds.

Namespace: BasicCard
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public int Length { get; set; }
Visual Basic
Public Property Length As Integer
	Get
	Set
Visual C++
public:
property int Length {
	int get ();
	void set (int value);
}
F#
member Length : int with get, set

Property Value

Type: Int32

Remarks

If length is decreased, data is truncated. If length is increased 0 bytes are appended.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionWhen setting length to value exceeding capacity.

See Also