Commit aabf2e9 1 parent c083762 commit aabf2e9 Copy full SHA for aabf2e9
File tree 1 file changed +3
-0
lines changed
src/Microsoft.IdentityModel.Tokens/Validation
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ protected ValidationParameters(ValidationParameters other)
93
93
_signatureValidator = other . SignatureValidator ;
94
94
TimeProvider = other . TimeProvider ;
95
95
TryAllDecryptionKeys = other . TryAllDecryptionKeys ;
96
+ TryAllIssuerSigningKeys = other . TryAllIssuerSigningKeys ;
96
97
TokenDecryptionKeyResolver = other . TokenDecryptionKeyResolver ;
97
98
_tokenDecryptionKeys = other . TokenDecryptionKeys ;
98
99
TokenReplayCache = other . TokenReplayCache ;
@@ -530,6 +531,7 @@ public TokenReplayValidationDelegate TokenReplayValidator
530
531
/// all available keys will be tried.
531
532
/// </summary>
532
533
/// <remarks>Default is false.</remarks>
534
+ [ DefaultValue ( true ) ]
533
535
public bool TryAllIssuerSigningKeys { get ; set ; }
534
536
535
537
/// <summary>
@@ -642,6 +644,7 @@ internal set
642
644
/// Gets or sets a boolean that controls if the actor claim should be validated.
643
645
/// </summary>
644
646
/// <remarks>Default value is false.</remarks>
647
+ [ DefaultValue ( false ) ]
645
648
public bool ValidateActor { get ; set ; }
646
649
}
647
650
}
You can’t perform that action at this time.
0 commit comments