3 апреля 2023 г.
Просмотров: 459
Master the art of caching in .NET applications to improve performance and user experience.
Caching is a powerful technique to improve application performance and response times. By temporarily storing the results of expensive operations or frequently accessed data, you can reduce the load on your system and provide faster response times...
далее...
29 марта 2023 г.
Просмотров: 670
The HTTP protocol lets browsers and other applications request resources from a server on the internet, for example, to load a web page. HTTP/3 is the latest version of this protocol, which was published by the Internet Engineering Task Force (IETF) as a proposed standard under RFC 9114 in June...
далее...
28 марта 2023 г.
Просмотров: 1239
Introduction
This article demonstrates Middleware concepts in ASP.NET Core. At the end of this article, you will have clear understanding on below points:
What is Middleware?
Why Middleware ordering is important?
Understanding of Run, Use and Map Method.
How...
далее...
18 марта 2023 г.
Просмотров: 385
Application security is becoming a more and more important topic on a day-to-day basis. Unauthorized access to protected data can potentially cost millions of dollars in the form of various financial penalties. Almost every application needs some reliable tool to manage its users’ identities and accesses.
There are a bunch of...
далее...
18 марта 2023 г.
Просмотров: 745
The core difference between GraphQL and REST APIs is that GraphQL is a specification, a query language, while REST is an architectural concept for network-based software.
Note: This article is mostly server-side related.
GraphQL is gaining momentum as a successor to REST APIs. However, it isn’t always a “replacement”, and making the...
далее...
18 марта 2023 г.
Просмотров: 868
This tutorial focuses on the elements of Apache Superset, a modern tool for Data Collection, Visualization, and Exploration. Apache Superset is one of the most comprehensive open-source Business Intelligence tools though it is very easy to use. It is faster and more efficient than existing similar tools, and it comes...
далее...
15 марта 2023 г.
Просмотров: 1174
1. JustDecompile
JustDecompile is a free decompiler tool that allows you to easily decompile .NET assemblies into readable code. With this tool, you can quickly and easily analyze the code of any .NET application, even if you don’t have the original source code.
https://www.telerik.com/products/decompiler.aspx
2. PostSharp
PostSharp is a powerful tool that allows you...
далее...
12 марта 2023 г.
Просмотров: 1470
Introduction: In today’s world, real-time communication is essential for many web applications. For example, consider an online game where players need to communicate with each other in real-time, or a chat application where users expect instant messaging. Fortunately, SignalR, a real-time web framework, is available to help developers implement such...
далее...
12 марта 2023 г.
Просмотров: 210
C# 11.0 became available with .NET 7.0 in November 2022. It has made a few improvements for string literals. In this post, I'll show how the new raw string literals feature can significantly improve readability.
Problems with string literals
There are two problems that have long plagued string literals in C#:
...
далее...
Просмотров: 346