Skip to content

Commit 101234d

Browse files
Merge branch 'master' into 2026-annual-updates
2 parents 0596f8b + 40ee58f commit 101234d

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The NuGet package provides support for a wide range of .NET versions including m
2222

2323
### Using the Library
2424

25-
The Parser class provides a simple API for parsing data containing a sequence of elements. Each element string in the sequence has an Application Identifier (AI) between 2-4 digits in length and a numeric or alphanumeric data value of fixed or variable length, depending on the AIs definition.
25+
The Parser class provides a simple API for parsing data containing a sequence of elements. Each element string in the sequence has an Application Identifier (AI) between 2-4 digits in length and a numeric or alphanumeric data value of fixed or variable length, depending on the AIs definition.
2626

2727

2828

@@ -143,7 +143,7 @@ Each time the Parser calls back to the client code, it provides a ResolvedApplic
143143
* **Inverse Exponent**: the implied decimal point position specified in the AI, if supported. Otherwise, null.
144144
* **Sequence**: the sequence within a real-world process represented by the data element, if supported. Otherwise, null.
145145
* **Exceptions**: a collection of exceptions that occurred, if any, when resolving the data element.
146-
* **'Is Error' indicator**: True, if any exceptions where detected when resolving the data element. Otherwise, false.
146+
* **'Is Error' indicator**: True, if any exceptions where detected when resolving the data element.Otherwise, false.
147147
* **'Is Fatal' indicator**: True, if any exceptions prevented the GS1 Parser from representing a parsed data element that conforms to, or is known to conform to, the GS1 specification for that data element. Otherwise, false.
148148
* **'Is Fixed Width' indicator**: True if the value of the data element is specified as a fixed-width value. This does not imply that the data element has a predefined length specified in Figure 7.8.5-2 in GS1 General Specifications. However, all AIs with a predefined length have fixed-width values.
149149
* **Index**: The index of the element string sequence containing the resolved data element in the list of sequences passed to the Parse() method.
@@ -257,9 +257,9 @@ void \_\_stdcall Gs1Ai\_Callback(
257257

258258
  int, // Is fixed width (1 = true, 0 = false)
259259

260-
  int,  // Is error (1 = true, 0 = false)
260+
  int, // Is error (1 = true, 0 = false)
261261

262-
  int,  // Is fatal (1 = true, 0 = false)
262+
  int, // Is fatal (1 = true, 0 = false)
263263

264264
  int, // Character position
265265

@@ -269,17 +269,17 @@ void \_\_stdcall Gs1Ai\_Callback(
269269

270270
void \_\_stdcall Gs1Ai\_SetExceptionCallback(
271271

272-
  int, // Entity
272+
int, // Entity
273273

274-
  int, // Error number
274+
int, // Error number
275275

276-
  wchar\_t\*,   // Message (UTF-16 on Windows)
276+
wchar\_t\*, // Message (UTF-16 on Windows)
277277

278-
  int,   // length of message
278+
int, // length of message
279279

280-
  int,    // Is fatal (1 = true, 0 = false)
280+
int, // Is fatal (1 = true, 0 = false)
281281

282-
  int) // Offset
282+
int) // Offset
283283

284284

285285

@@ -297,7 +297,7 @@ int \_\_stadcall Gs1Ai\_Parse(
297297

298298
  int, // Amount Payable semantics - 0 = Invoice, 1 - Coupon Value
299299

300-
  const wchar\_t\*\*, // GCP list (UTF-16 on Windows)
300+
  const wchar\_t\*\*, // GCP list(UTF-16 on Windows)
301301

302302
  int) // Count of GCPs in list
303303

@@ -519,7 +519,7 @@ Fatal: No
519519

520520
Message: The value{0} is not a recognised UN/ECE or GS1 package type code.
521521

522-
Reason: The value of the package type code does not conform to UN/CEFACT Recommendation No. 21 Codes for Types of Cargo, Packages and Packaging Materials. In addition, it is not defined in the GS1 Packaging Type Code List.
522+
Reason: The value of the package type code does not conform to UN/CEFACT Recommendation No. 21 Codes for Types of Cargo, Packages and Packaging Materials. In addition, it is not defined in the GS1 Packaging Type Code List.
523523

524524

525525

0 commit comments

Comments
 (0)