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
TokenValidationParameters has this public IDictionary<string, object> InstancePropertyBag { get; } = new Dictionary<string, object>();. Can that be lazily instantiated? I don’t see any other code in the repo (beyond tests) using InstancePropertyBag, yet every TokenValidationParameters being constructed is creating this dictionary instance.
The text was updated successfully, but these errors were encountered:
TokenValidationParameters has this
public IDictionary<string, object> InstancePropertyBag { get; } = new Dictionary<string, object>();
. Can that be lazily instantiated? I don’t see any other code in the repo (beyond tests) using InstancePropertyBag, yet every TokenValidationParameters being constructed is creating this dictionary instance.The text was updated successfully, but these errors were encountered: