Amount of bytes this ByteBuffer currently holds.
Namespace: BasicCardAssembly: 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
Exception | Condition |
---|---|
System..::..ArgumentOutOfRangeException | When setting length to value exceeding capacity. |