| IdTokenResponseBuilder | Builds the id_token response-type component of an authorization endpoint success response — the OIDC identity-token contributor of the Implicit / Hybrid Flow. Generates an ID token via IIdentityTokenService and stores it on the running SuccessfullyAuthenticated result. Registered ONLY when a host calls EnableImplicitFlow(); absent by default per OAuth 2.1 (draft) deprecation guidance. Declares implicit in GrantTypesSupported so opting in surfaces the implicit grant in discovery and registration-time gating without extra DI wiring. |
| ServiceCollectionExtensions | DI extensions that opt the host into the OAuth 2.0 / OIDC Implicit and Hybrid Flows. |
| TokenResponseBuilder | Builds the token response-type component of an authorization endpoint success response — the access-token contributor of the Implicit / Hybrid Flow. Generates an access token via IAccessTokenService and stores it on the running SuccessfullyAuthenticated result. Registered ONLY when a host calls EnableImplicitFlow(); absent by default per OAuth 2.1 (draft) deprecation guidance. Declares implicit in GrantTypesSupported so opting in surfaces the implicit grant in discovery and registration-time gating without extra DI wiring. |