What Is JWT and Why Does It Matter? JSON Web Token (JWT) is an open standard (RFC 7519) for securely… Read More... "Secure JWT Authentication in .NET 8: A Complete Implementation Guide"
Methods in C#
Methods in C# are blocks of code that perform a specific task or set of operations. They are declared within… Read More... "Methods in C#"
Session, cookie, JWT, token, SSO, and OAuth 2.0 – what are they?
These terms are all related to user identity management. When you log into a website, you declare who you are… Read More... "Session, cookie, JWT, token, SSO, and OAuth 2.0 – what are they?"
C# Generics
C# Generics allows for the creation of reusable, type-safe code. Generic allow for the creation of classes, interfaces, and methods… Read More... "C# Generics"
Reflection in C#
Reflection can be used to dynamically generate an instance of a type, bind a type to an existing object, or… Read More... "Reflection in C#"