We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will these samples work in UWP (Win10 and Win10M)?
The text was updated successfully, but these errors were encountered:
I tried with FaceDetection
The code is fine until exiting GetImageSourceFromStream
private ImageSource GetImageSourceFromStream(Stream stream) { this.imageSourceStream = new MemoryStream(); stream.Seek(0, SeekOrigin.Begin); stream.CopyTo(this.imageSourceStream); stream.Flush(); return ImageSource.FromStream( () => { this.imageSourceStream.Seek(0, SeekOrigin.Begin); return this.imageSourceStream; }); }
An exception of type 'System.AccessViolationException' occurred in Xamarin.Forms.Platform.UAP.dll and wasn't handled before a managed/native boundary
Sorry, something went wrong.
No branches or pull requests
Will these samples work in UWP (Win10 and Win10M)?
The text was updated successfully, but these errors were encountered: