Freigeben über


DefaultCredentialsLoader Constructors

Definition

Overloads

DefaultCredentialsLoader()

Default constructor (for backward compatibility)

DefaultCredentialsLoader(ILogger<DefaultCredentialsLoader>)

Constructor with a logger

DefaultCredentialsLoader(IEnumerable<ICustomSignedAssertionProvider>, ILogger<DefaultCredentialsLoader>)

Constructor for DefaultCredentialsLoader when using custom signed assertion provider source loaders.

DefaultCredentialsLoader()

Default constructor (for backward compatibility)

public DefaultCredentialsLoader();
Public Sub New ()

Applies to

DefaultCredentialsLoader(ILogger<DefaultCredentialsLoader>)

Constructor with a logger

public DefaultCredentialsLoader(Microsoft.Extensions.Logging.ILogger<Microsoft.Identity.Web.DefaultCredentialsLoader>? logger);
new Microsoft.Identity.Web.DefaultCredentialsLoader : Microsoft.Extensions.Logging.ILogger<Microsoft.Identity.Web.DefaultCredentialsLoader> -> Microsoft.Identity.Web.DefaultCredentialsLoader
Public Sub New (logger As ILogger(Of DefaultCredentialsLoader))

Parameters

Applies to

DefaultCredentialsLoader(IEnumerable<ICustomSignedAssertionProvider>, ILogger<DefaultCredentialsLoader>)

Constructor for DefaultCredentialsLoader when using custom signed assertion provider source loaders.

public DefaultCredentialsLoader(System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.ICustomSignedAssertionProvider> customSignedAssertionProviders, Microsoft.Extensions.Logging.ILogger<Microsoft.Identity.Web.DefaultCredentialsLoader>? logger);
new Microsoft.Identity.Web.DefaultCredentialsLoader : seq<Microsoft.Identity.Abstractions.ICustomSignedAssertionProvider> * Microsoft.Extensions.Logging.ILogger<Microsoft.Identity.Web.DefaultCredentialsLoader> -> Microsoft.Identity.Web.DefaultCredentialsLoader
Public Sub New (customSignedAssertionProviders As IEnumerable(Of ICustomSignedAssertionProvider), logger As ILogger(Of DefaultCredentialsLoader))

Parameters

customSignedAssertionProviders
IEnumerable<ICustomSignedAssertionProvider>

Set of custom signed assertion providers.

Applies to