diff --git a/IdentityServer/v7/docs/content/ui/login/dynamicproviders.md b/IdentityServer/v7/docs/content/ui/login/dynamicproviders.md index 5f6977f0..0d26a9d0 100644 --- a/IdentityServer/v7/docs/content/ui/login/dynamicproviders.md +++ b/IdentityServer/v7/docs/content/ui/login/dynamicproviders.md @@ -114,7 +114,8 @@ For example: ```cs class CustomOidcConfigureOptions : ConfigureAuthenticationOptions { - public CustomOidcConfigureOptions(IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor) + public CustomOidcConfigureOptions(IHttpContextAccessor httpContextAccessor, + ILogger logger) : base(httpContextAccessor, logger) { } @@ -131,7 +132,7 @@ class CustomOidcConfigureOptions : ConfigureAuthenticationOptions(); }