File tree 2 files changed +10
-1
lines changed
src/Security/Authentication/WsFederation 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ public WsFederationOptions() { }
85
85
public bool RefreshOnIssuerKeyNotFound { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
86
86
public Microsoft . AspNetCore . Http . PathString RemoteSignOutPath { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
87
87
public bool RequireHttpsMetadata { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
88
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
89
+ public new bool SaveTokens { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
88
90
public System . Collections . Generic . ICollection < Microsoft . IdentityModel . Tokens . ISecurityTokenValidator > SecurityTokenHandlers { get { throw null ; } set { } }
89
91
public string SignOutScheme { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
90
92
public string SignOutWreply { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
Original file line number Diff line number Diff line change 4
4
using System ;
5
5
using System . Collections . Generic ;
6
6
using System . Collections . ObjectModel ;
7
+ using System . ComponentModel ;
7
8
using System . IdentityModel . Tokens . Jwt ;
8
9
using Microsoft . AspNetCore . Http ;
9
10
using Microsoft . IdentityModel . Protocols ;
@@ -176,5 +177,11 @@ public TokenValidationParameters TokenValidationParameters
176
177
/// is not set.
177
178
/// </summary>
178
179
public string SignOutScheme { get ; set ; }
180
+
181
+ /// <summary>
182
+ /// SaveTokens is not supported in WsFederation
183
+ /// </summary>
184
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
185
+ public new bool SaveTokens { get ; set ; }
179
186
}
180
- }
187
+ }
You can’t perform that action at this time.
0 commit comments