Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CSharp8583/CSharp8583/Common/Enumerations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ public enum LengthType
/// </summary>
LLLLVAR = 4,
/// <summary>
/// LLLLLVAR binary field of up to 99999 bits in length
/// </summary>
LLLLLVAR = 5
/// <summary>
/// LLLLLLVAR binary field of up to 999999 bits in length
/// </summary>
LLLLLLVAR = 6
Expand Down
2 changes: 2 additions & 0 deletions CSharp8583/CSharp8583/Extensions/IsoExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ internal static string GetFieldValue(this IIsoFieldProperties isoFieldProperties
case LengthType.LLVAR:
case LengthType.LLLVAR:
case LengthType.LLLLVAR:
case LengthType.LLLLLVAR:
case LengthType.LLLLLLVAR:
if (isoFieldProperties.LenDataType == DataType.ASCII)
{
Expand Down Expand Up @@ -207,6 +208,7 @@ internal static byte[] BuildFieldValue(this IIsoFieldProperties isoFieldProperti
case LengthType.LLVAR:
case LengthType.LLLVAR:
case LengthType.LLLLVAR:
case LengthType.LLLLLVAR:
case LengthType.LLLLLLVAR:
if (isoFieldProperties.LenDataType == DataType.ASCII)
{
Expand Down