Is it possible to await an event instead of another async method?
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 … Read more
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 … Read more
Seems as though an update on Windows 10 overnight broke Python. Just trying to run python –version returned a “Permission Denied” error. None … Read more
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 … Read more
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 … Read more
I’ve got this code: private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args) { CheckBox ckbx = null; if (sender is CheckBox) { ckbx = … Read more
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 … Read more
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, … Read more
Preface: I’m looking for an explanation, not just a solution. I already know the solution. Despite having spent several days studying MSDN articles … Read more