Secure Microservices Using JWT With Ocelot in .NET Core (code-maze.com)
Monday, March 25, 2024
C# generic type converter
Here is a way to create a generic type converter in c#
c# - How to Convert a String to a Nullable Type Which is Determined at Runtime? - Stack Overflow
Share cookies between dot net framework and dot net core
Since dot net framework encryption is different from that of dot net core, encrypted cookies cannot be directly shared between the two. Instead we need to create a compatible data protector as explained at
c# - share authentication cookie between .NET Framework and .Net Core - Stack Overflow
c# - share authentication cookie between .NET Framework and .Net Core - Stack Overflow
Monday, March 11, 2024
Visual Studio ( or VS Code) strip all attributes from html tags
This is a very simple shortcut, find and replace using following regex
Find - <(table|tr|td|p|div|span)[\S\s]*?\n?>
Replace - <$1>
Subscribe to:
Posts (Atom)
c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch
If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...
-
SharePoint has a great feature to set terms which can be used to tag contents and enable terms based navigation and several other interesti...
-
Responsive design http://webdesignerwall.com/tutorials/5-useful-css-tricks-for-responsive-design http://palantir.net/blog/responsive-de...
-
Secure Microservices Using JWT With Ocelot in .NET Core (code-maze.com)