Xamarin表单-在ScanFilesToFolderAsync上抛出TaskCanceledException

时间:2019-04-15 09:19:10

标签: c# xamarin.forms uwp win-universal-app

在我的UWP应用程序中,我正在使用扫描功能。在此应用程序中,用户可以通过选择平板扫描仪或自动进纸器来通过扫描仪扫描文档。现在的问题是,当我尝试对其进行扫描时,出现了一个任务被取消的例外情况。

请帮助。

先谢谢。 :)

祝你有美好的一天...:)

private async void Btnscan_Click(object sender, RoutedEventArgs e)
    {

        FolderPicker folderPicker = new FolderPicker();
        folderPicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
        folderPicker.FileTypeFilter.Add("*");

        StorageFolder folder = await folderPicker.PickSingleFolderAsync();
//set the destination folder name for scan images.


        DeviceInformationDisplay selectedScanner = CmbScannerList.SelectedItem as DeviceInformationDisplay; // here i got the selected scanner.

        // scanner id is := "\\\\?\\ROOT#IMAGE#0000#{6bdd1fc6-810f-11d0-bec7-08002be2092f}"

        ScanToFolder(selectedScanner.id, folder);


    }

功能“扫描到”文件夹

 public async void ScanToFolder(string deviceId, StorageFolder folder)
    {
        try
        {
 cancellationToken = new CancellationTokenSource();

            ImageScanner myScanner = await ImageScanner.FromIdAsync(deviceId);

            if (myScanner.IsScanSourceSupported(ImageScannerScanSource.Flatbed))
            {
                var result = await myScanner.ScanFilesToFolderAsync(ImageScannerScanSource.Flatbed, folder).AsTask(cancellationToken.Token); // through an exception(A Task Was Canceled):(
Utils.DisplayImageAndScanCompleteMessage(result.ScannedFiles, DisplayImage);

            }

        }

        catch (Exception ex)
        {
            // here i got the exception.
        }

    }

已更新:

现在我将DeviceClass设置为ALL。

   private void StartWatcher()
    {
        resultCollection.Clear();
        DeviceWatcher deviceWatcher;

        deviceWatcher = DeviceInformation.CreateWatcher(DeviceClass.All); // set Image scanner to all. 
       deviceWatcherHelper.StartWatcher(deviceWatcher);
  }

在扫描仪列表中运行项目后,我得到了所有连接的设备,在其中我得到了我的扫描仪名称:这:当我尝试传递此名称时,它在imagescanner System.Exception中给出了错误:'HRESULT异常:0x80210015找不到设备。 现在,我全都使用ImageScanner了,而我在扫描仪列表中什么也没有。

enter image description here

在HP扫描仪应用程序中,我得到了这个名称。和IT Scan Well :(在扫描仪列表中,我的应用程序中没有此名称。:( enter image description here

在我的电脑设置->设备->扫描仪和打印机上,我得到了这些名称。

enter image description here

1 个答案:

答案 0 :(得分:1)

重写问题的解决方案作为答案。我在机器上正确运行的代码上进行了测试,并认为该问题很可能是驱动程序问题。 OP确认了这一点,重新安装驱动程序有助于再次进行扫描。