Indicates if the APDU should be encoded using extended length LC.

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

Syntax

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

Property Value

Type: Boolean

Remarks

Must be set before data is appended to the apdu. It is not recommended to set UseExtendedLC without setting UseExtendedLE. This can be done in one step by using UseExtendedLength.

See Also