mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Merge branch 'main' into Resources
This commit is contained in:
commit
2ebb39cb1b
1 changed files with 2 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue