Merge branch 'main' into Resources

This commit is contained in:
Joe DeCock 2025-01-28 14:16:21 -06:00 committed by GitHub
commit 2ebb39cb1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,7 +40,8 @@ public class IdentityProvider
/// </summary>
public IdentityProvider(string type)
{
Type = type ?? throw new ArgumentNullException(nameof(type));
ArgumentException.ThrowIfNullOrWhiteSpace(type);
Type = type;
}
/// <summary>