CheckMSI
Specifies the check digit algorithms used for MSI barcode validation. These algorithms are used to calculate and verify check digits in MSI barcodes to ensure data integrity.
Definition
Namespace:Telerik.Maui.Controls.Barcode
Assembly:Telerik.Maui.Controls.dll
Syntax:
public enum CheckMSI
Fields
Uses the Modulo 10 algorithm for check digit calculation. This is a simple checksum algorithm that uses the sum of digits modulo 10.
Modulo10 = 0
Uses a double Modulo 10 algorithm for enhanced check digit calculation. This applies the Modulo 10 algorithm twice for increased data integrity verification.
Modulo1010 = 2
Uses the Modulo 11 algorithm for check digit calculation. This algorithm provides better error detection than Modulo 10 by using weighted digit positions.
Modulo11 = 1
Uses a combination of Modulo 11 and Modulo 10 algorithms for check digit calculation. This provides the strongest error detection by combining both validation methods.
Modulo1110 = 3