Explore >> Select a destination


You are here

damienbod.com
| | az-liftshift.com
0.0 parsecs away

Travel
| | This article shows how an ASP.NET Core Razor Page application could implement an automatic sign-out when a user does not use the application for n-minutes. The application is secured using Azure AD B2C. To remove the session, the client must sign-out both on the ASP.NET Core application and the Azure AD B2C identity provider or
| | csharp.christiannagel.com
3.0 parsecs away

Travel
| | ASP.NET Core and Azure Active Directory B2C offers easy ways for identity management. It's great functionality out of the box.
| | www.inogic.com
4.3 parsecs away

Travel
| | Introduction: In our recent blog, We saw how to create an Azure function and now that we have our Azure function ready and hosted, let's look at invoking the function through a workflow. At this point, we will execute the function through an HTTP request instead of registering the function as a Webhook. Let us modify the
| | www.rasikjain.com
15.8 parsecs away

Travel
| Here are three scenarios for implementing authentication workflows. Internet Applications (Public facing) For internet web applications and APIs, Session based (SessionID cookie) and Token Based (JWT) Authentication can be implemented. Session Based: Implemented for a majority of traditional and stateful web applications. Once the user is authenticated, A Session state is created and stored in an external State server or SQL database. The Session state is identified by a unique SessionID....