Dryv: Easy Async Form Validation With ASP.NET Core and Vue.js May 27, 2020May 27, 2020Munir HusseiniNo Comments In this article, I will show how to implement async form validation with ASP.NET Core, Vue.js and Dryv. In the…
Form Validation With ASP.NET Core and VueJS Made Easy With Dryv May 1, 2020May 27, 2020Munir Husseini1 Comment Advanced form validation can get tricky. Matching server and client validation with complex validation rules is also often very code-intensive.…
.NET Core 3.1: the converter … read too much or not enough April 19, 2020July 25, 2020Munir HusseiniNo Comments The other day, I created a custom JSON converter for the new JSON API in .NET Core 3.1. At runtime,…
Concurrent Access to External Resources with .NET Core April 9, 2020May 12, 2020Munir HusseiniNo Comments A common scenario in web application is that multiple threads (i.e. concurrent page requests) concurrently try to access the same…
How to find files after receiving mscordaccore.dll error message March 22, 2019May 12, 2020Munir HusseiniNo Comments This article describes where to find mscordaccore.dll on Azure App Service machines to allow import of memory dumps using JetBrain’s dotMemory.
ASP.NET Core: Including PDB Files from Assembly References in Deployment Packages October 26, 2018May 15, 2020Munir Husseini1 Comment Having good error logging in production is essential for effective analysis and fixing of runtime errors. The stack trace inducing…
Fast Conversion of Objects to Dictionaries in C# February 28, 2018May 31, 2020Munir Husseini2 Comments Converting (plain old) C# objects to dictionaries is easy with Reflection (e.g., as seen here). But Reflection is rather slow,…
ASP.NET Core: Precompiled Razor Views in Class Library February 12, 2018May 15, 2020Munir Husseini3 Comments Generating precompiled Razor views in ASP.NET Core is easy. However, there are a few things you need to know so…
Monkey Logon – Xamarin Apps With OAuth2Authenticator November 22, 2017May 16, 2020Munir HusseiniNo Comments This entry is part 7 of 6 in the series Monkey Logon - Xamarin, ASP.NET Core 2 & External OAuthAdding support for OAuth in Xamarin applications is easy. Most of the work is already implemented in the class OAuth2Authenticator. In…
Monkey Logon – OAuth Code Flow From Within an Ongoing Implicit Flow November 1, 2017Munir HusseiniNo Comments This entry is part 5 of 6 in the series Monkey Logon - Xamarin, ASP.NET Core 2 & External OAuthIn this post, I will show how to initiate an OAuth Code Flow from within an ongoing OAuth Implicit Flow…