Duncan Watts

Results 8 comments of Duncan Watts

I fixed this issue a while ago on a UIGestureRecognizer by returning false to the ShouldRecognizeSimultaneously delegate, and also triggering the Cancelled at the same time. I'm trying to switch...

No, it allows the scroll gesture on the scroll view to take priority and cancels the touch event on the canvas, which is the functionality I was after.

Note this works fine in a .NET 6 WPF application, it's only the .NET 6 iOS build that has this issue so far. I've yet to try it on Android...

@simonrozsival I've added a WPF .NET 6 application to my example that isn't throwing a ProtocolException if that's of any help. [WcfExampleWithWPF.zip](https://github.com/dotnet/wcf/files/9525709/WcfExampleWithWPF.zip)

I've run Fiddler against the WPF build and in this instance it's returning Content-Length: 325 so assume it must be something in how it's making the request. Request headers: ```...

Removing the Content-Length header using a DelegatingHandler works a charm thank you. The previous workaround of setting UseNativeHttpHandler to false did work but triggered a lot of errors with the...

What is the a workaround to this issue? I cannot seem to run the SWA locally with a c# function api added, although it does work correctly when deployed to...

Thank you, that gets me going again, as long as I start the SWA and C# Function app separately this is working for me. ``` var proxy = require('express-http-proxy'); var...