Appverse.Platform.IPhone.IPhoneScanner.ZxingToBarcode C# (CSharp) Method

ZxingToBarcode() private method

private ZxingToBarcode ( ZXing format ) : BarCodeType
format ZXing
return BarCodeType
		private BarCodeType ZxingToBarcode (ZXing.BarcodeFormat format){
			foreach(BarCodeType type in Enum.GetValues(typeof(BarCodeType))){
				if(format.ToString().Equals(type.ToString())) return type;
			}
			return BarCodeType.DEFAULT;

		}