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
/// Gets or sets the HTTP context object that might provide information for routing and generating access token.
18
-
/// </summary>
19
-
publicHttpContextHttpContext{get;set;}
20
-
21
-
/// <summary>
22
-
/// Gets or sets the user ID. If null, the identity name in <see cref="HttpContext.User" /> of the property <see cref="HttpContext"/> will be used.
23
-
/// </summary>
24
-
publicstringUserId{get;set;}
25
-
26
-
/// <summary>
27
-
/// Gets or sets the claim list to be put into access token. If null, the claims in <see cref="HttpContext.User"/> of the property <see cref="HttpContext"/> will be used.
28
-
/// </summary>
29
-
publicIList<Claim>Claims{get;set;}
30
-
31
-
/// <summary>
32
-
/// Gets or sets the lifetime of <see cref="NegotiationResponse.AccessToken"/>. Default value is one hour.
/// Gets or sets the HTTP context object that might provide information for routing and generating access token.
18
+
/// </summary>
19
+
publicHttpContextHttpContext{get;set;}
20
+
21
+
/// <summary>
22
+
/// Gets or sets the user ID. If null, the identity name in <see cref="HttpContext.User" /> of the property <see cref="HttpContext"/> will be used.
23
+
/// </summary>
24
+
publicstringUserId{get;set;}
25
+
26
+
/// <summary>
27
+
/// Gets or sets the claim list to be put into access token. If null, the claims in <see cref="HttpContext.User"/> of the property <see cref="HttpContext"/> will be used.
28
+
/// </summary>
29
+
publicIList<Claim>Claims{get;set;}
30
+
31
+
/// <summary>
32
+
/// Gets or sets the lifetime of <see cref="NegotiationResponse.AccessToken"/>. Default value is one hour.
/// Gets or sets the flag indicates whether the client is a diagnostic client.
38
+
/// </summary>
39
+
publicboolIsDiagnosticClient{get;set;}=false;
40
+
41
+
/// <summary>
42
+
/// Gets or sets the flag indicates whether detailed errors are logged in the client side.
43
+
/// </summary>
44
+
publicboolEnableDetailedErrors{get;set;}=false;
45
+
46
+
/// <summary>
47
+
/// Gets or sets the flag indicates that whether the connection should be closed when the authentication token expires. The lifetime of the token is determined by <see cref="TokenLifetime"/>.
0 commit comments