public DeviceCodeCredential(Func <DeviceCodeInfo, CancellationToken, Task> deviceCodeCallback, string tenantId, string clientId, TokenCredentialOptions options = default)
     : this(deviceCodeCallback, Validations.ValidateTenantId(tenantId, nameof(tenantId), allowNull : true), clientId, options, null)
 {
 }
 public InteractiveBrowserCredential(string tenantId, string clientId, TokenCredentialOptions options = default)
     : this(Validations.ValidateTenantId(tenantId, nameof(tenantId), allowNull : true), clientId, options, null, null)
 {
 }