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…
Unity ARFoundation: Loading XRReferenceImageLibrary For ARCore At Runtime August 2, 2019May 13, 2020Munir Husseini2 Comments In the Unity forum, Lorenzo Valente posted an approach to dynamically loading ARCore imgdb (XRReferenceImageLibrary) files at runtime. His approach…
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…
C#: Select All Active Local IP Addresses June 9, 2018May 13, 2020Munir HusseiniNo Comments To select all active local IP addresses (v4), use the following C# code:
An error occurred while communicating with the remote host. The error code is 0x80070032. May 8, 2018May 15, 2020Munir HusseiniNo Comments The logs of a web application running in IIS include an HttpException with an inner COMException and the message “An…
Print Out .NET Classes to String in C# February 28, 2018May 15, 2020Munir HusseiniNo Comments Ever needed to generate a string that contains the C#-Code of a .NET class (in other words, print out -NET…