We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15e1c2 commit fe35816Copy full SHA for fe35816
src/Components/WebAssembly/WebAssembly.Authentication/src/Options/OidcProviderOptions.cs
@@ -40,5 +40,17 @@ public class OidcProviderOptions
40
/// </summary>
41
[JsonPropertyName("post_logout_redirect_uri")]
42
public string PostLogoutRedirectUri { get; set; }
43
+
44
+ /// <summary>
45
+ /// Gets or sets the response type to use on the authorization flow. The valid values are specified by the identity provider metadata.
46
+ /// </summary>
47
+ [JsonPropertyName("response_type")]
48
+ public string ResponseType { get; set; }
49
50
51
+ /// Gets or sets the response mode to use in the authorization flow.
52
53
+ [JsonPropertyName("response_mode")]
54
+ public string ResponseMode { get; set; }
55
}
56
0 commit comments