Skip to content

Commit 78d3ab1

Browse files
authored
Update README.md
1 parent 299a072 commit 78d3ab1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Microsoft.Identity.Web/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This library contains a set of reusable classes useful in Web Applications and Web APIs (collectively referred to as Web resources) that sign-in users and call Web APIs
44

5-
The library contains help classes to
5+
The library contains helper classes to:
66

7-
- Bootstrap the web resource from the Startup.cs file in your web application by just calling a few methods
7+
- **Bootstrap the web resource from the Startup.cs file** in your web application by just calling a few methods
88
- `AddAzureAdV2Authentication` to add authentication with the Microsoft Identity platform (AAD v2.0), including managing the authority validation, and the sign-out.
99

1010
```CSharp
@@ -26,7 +26,7 @@ The library contains help classes to
2626
- `OpenIdConnectMiddlewareDiagnostics` helps you understand what happens in the Open Id Connect Middleware. This is a diagnostics class that can help you troubleshooting your Web apps.
2727
- `ClaimsPrincipalExtensions` provides a set of extension methods on `ClaimsPrincipal` helping getting information from the signed-in user. It's used in the other classes of the libraries.
2828

29-
- Acquire a token to call protected APIs (in the `Client` folder)
29+
- **Acquire a token to call protected APIs** (in the `Client` folder)
3030
- `ITokenAcquisition` is an interface implemented by a wrapper to MSAL.NET in confidential client applications, enabling you to simply get a token from the controllers, after adding them to the cache from OpenIDConnect events (in Web Apps), or JwtBearerMiddleware events (in the case of Web APIs)
3131
- Extensions methods allow you to choose the token cache implementation you want to have in your web resource (`AddSessionBasedTokenCache`, or `AddInMemoryTokenCache` for the moment)
3232
- `MsalUiRequiredExceptionFilterAttribute` allows for incremental consent by declaratively adding the attribute with the required scopes, on a controller action.

0 commit comments

Comments
 (0)