Example #1
0
 public QrScanner(QrScannerViewController parent)
 {
     this.parent = parent;
     this.reader = new MultiFormatReader {
         Hints = new Hashtable {
             //BarcodeFormat.QR_CODE, PDF417
             { DecodeHintType.POSSIBLE_FORMATS, new ArrayList {
                   BarcodeFormat.QR_CODE
               } }
         }
     };
 }
 public QrScanner(QrScannerViewController parent)
 {
     this.parent = parent;
     this.reader = new MultiFormatReader {
         Hints = new Hashtable {
             //BarcodeFormat.QR_CODE, PDF417
             { DecodeHintType.POSSIBLE_FORMATS, new ArrayList {  BarcodeFormat.QR_CODE } }
         }
     };
 }