Tag archives for .Net Core - Page 2
Implementing .NET Core Health Checks
Generally, when we are using any uptime monitoring systems or load balancers, these systems will keep monitoring the health of the application and based on its health condition it will…
Creating Trimmed Self Contained Single Executable using .NET Core 3.0
In .NET Core, we have a feature to get the runtime components and dependency components in the same folder where the application executable file resides. With this, the advantage is,…
C# 8.0: Static Local Functions
Local Functions are introduced in C# , you can read more about it here. In C# , these Local Functions are improvised so that it will work with more performance-driven…
C# 8.0: Enhanced Using Declaration
As we all aware using keyword is been used to ensure that the Dispose() method will be called on a type object implemented IDisposableinterface when it reaches declared block as shown…
C# 8.0: Nullable Reference Types
As we all ware of Nullable Types feature in C# also known as Nullable Value Types which was introduced since C# version. The advantage of this type is to avoid…
Safely Storing Sensitive Configuration Data in .NET Core
Problem Statement There could be a situation where the application will use some sensitive data such as Payment Gateway live credentials and client don’t want to expose the data to any of…
Understanding Produces and Consumes Attribute in MVC 6
Produces and Consumes Attributes are newly introduced in MVC 6 ( Core) to control the content negotiation. What is Content Negotiation? The process of picking the correct output format is known as Content Negotiation. Generally, Frameworks will…
Time to Upgrade from .NET core 2.0 to .NET core 2.1
It's time to upgrade your existing .NET core application running on to .NET core as .NET core support from Microsoft will be ended on 1st October 2018. Why? .NET Core was…
Why is .NET Core recommended for new Modern web Applications?
These days, as a modern web application, customers having high expectations of rich and intuitive UI design, secure and flexibility as the minimum requirement. These requirements can be achieved by the traditional .NET framework. But, why Core…
ASP.NET Core Features
5 has been renamed to Core and first version of NET Core was released in June 2016. The latest version of Core was released in Nov 2016. Open Source:…