You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When writing a Razor web app, I'd like to add a consent handler. There is no available method. I'm using the one for Blazor, which I think will work, but it is confusing and I'm not confident it is the correct approach.
Is your feature request related to a problem? Please describe.
When writing a Razor web app, I'd like to add a consent handler. There is no available method. I'm using the one for Blazor, which I think will work, but it is confusing and I'm not confident it is the correct approach.
Example from ConfigureServices() in Startup.cs:
services.AddServerSideBlazor()
.AddMicrosoftIdentityConsentHandler();
Describe the solution you'd like
I'd like something like:
services.AddServerSideRazor()
.AddMicrosoftIdentityConsentHandler();
Describe alternatives you've considered
If it's the same code for Razor and Blazor, maybe just make it neutral, like:
services.AddServerSide()
.AddMicrosoftIdentityConsentHandler();
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: