Share via

SIGABRT Microsoft_Maui_Platform_PageViewController

Anonymous
2022-09-11T18:57:08.553+00:00

Hi,

I have the below code in MAUI but I am getting this error when

https://sentry.io/share/issue/99ac3148fb634c559a5fee99e37429c3/

Here is my code:

async void cameraBarcodeReaderView_BarcodesDetected(System.Object sender, ZXing.Net.Maui.BarcodeDetectionEventArgs e)  
{  
    try  
    {  
        Dispatcher.Dispatch(() =>  
        {  
            taqyeem_url = OneId.Current.Decrypt(e.Results[0].Value, "xxxxxxxx");  
  
            cameraBarcodeReaderView.IsDetecting = false;  
        });  
  
        uri = new Uri(taqyeem_url);  
  
        var query = HttpUtility.ParseQueryString(uri.Query);  
    }  
    catch (Exception ex)  
    {  
        await DisplayAlert("Error", ex.Message, "OK");  
    }  
}  
Developer technologies | .NET | .NET Multi-platform App UI
Community Center | Not monitored
Developer technologies | C#
Developer technologies | C#

An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.