In my C#/XAML metro app, there’s a button which kicks off a long-running process. So, as recommended, I’m using async/await to make sure the UI thread doesn’t get blocked:...
Seems as though an update on Windows 10 overnight broke Python. Just trying to run python --version returned a “Permission Denied” error. None of the three updates; KB4507453, KB4506991,...
I’m trying to get content of HttpResponseMessage. It should be: {"message":"Action '' does not exist!","success":false}, but I don’t know, how to get it out of HttpResponseMessage. HttpClient httpClient =...
I’m implementing an API made by other colleagues with Apiary.io, in a Windows Store app project. They show this example of a method I have to implement: var baseAddress...
I’ve got this code: private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args) { CheckBox ckbx = null; if (sender is CheckBox) { ckbx = sender as CheckBox; } if (null...
I’m trying to sign a Windows 8 appx package with a pfx file I have. I’m using a command like so: signtool.exe sign /fd sha256 /f "key.pfx" "app.appx" And...
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question...
Preface: I’m looking for an explanation, not just a solution. I already know the solution. Despite having spent several days studying MSDN articles about the Task-based Asynchronous Pattern (TAP),...