.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,579 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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");
}
}