Click or drag to resize
BarcodeData Property
The data encoded in the barcode as an UTF-8 string.

Namespace: Scandit.Recognition
Assembly: Scandit.Recognition (in Scandit.Recognition.dll) Version: 5.8.0.2 (5.8.0.2)
Syntax
public string Data { get; }

Property Value

Type: String
Remarks

UWP-only: If your data uses special encodings, e.g. Kanji, make sure that you register additional encoding providers in your application. Otherwise the data can not be converted to UTF-8. This can be done with the following method.

Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
See Also