Dotnet

A .NET Programmer's Guide to CancellationToken Paid Members Public
Imagine having a long-running request triggered by a user on your server. But the user is no longer interested in the result and has navigated away from the page. However, the server is still processing that request and utilizing resources until you come along and implement Cancellation Tokens in the

Enhancing User Experience: Push Notifications in .NET for Apple Wallet Pass Updates Paid Members Public
Apple Wallet Passes Passes are dynamic and they reflect real-world state. Information in Apple Wallet passes can be dynamically updated. Learn how to use Apple Push Notification Service and Web Service endpoint to keep Wallet Pass updated.

Add to Apple Wallet from Your .NET Application: A Step-by-Step Guide Paid Members Public
The iOS Wallet app allows users to manage payment cards, boarding passes, tickets, gift cards, and other passes. Let's learn how to set up, build, and distribute Apple Wallet passes from a .NET application.

How To Build and Host ASP NET Core Applications on AWS Lambda Functions Paid Members Public
This article is sponsored by AWS and is part of my AWS Series. AWS Lambda is a compute service that lets you run code without provisioning or managing servers. You can build application APIs on Lambda Function with API Gateways (REST or HTTP API) or Function URL’s. But what

5 Ways to Handle Application Configuration & Secrets With Azure 🔐 Paid Members Public
Handing application configuration can be tricky. Let's dive into 5 different ways we can manage application secrets, configuration, connection strings, etc when building an ASP NET Application on Azure.

How To Protect Your ASP NET Web API Using JWT Authentication Paid Members Public
Learn how to protect an ASP NET Core Web API using JWT Bearer Token. We will be using Azure Active Directory (AD) as the Identity Provider and see how to integrate with it from our application and how everything works together.

Understand CORS and Learn How to Enable it for Your ASP NET API Paid Members Public
Cross Origin Resource Sharing or CORS in short is a W3C standard that allows a server to relax the same-origin policy. Learn more about CORS, how to enable it for an ASP NET Web API, Preflight requests and more.

Are You Using HttpClient in The Right Way? Paid Members Public
If not used correctly it's easy to run into socket exhaustion and DNS related issues with HttpClient in .NET Core. Learn how to identify these issues and how to use HttpClient class in the right way.