ChainedTokenCredential Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ChainedTokenCredential() |
Protected constructor for mocking. |
ChainedTokenCredential(TokenCredential[]) |
Creates an instance with the specified TokenCredential sources. |
ChainedTokenCredential()
- Source:
- ChainedTokenCredential.cs
- Source:
- ChainedTokenCredential.cs
Protected constructor for mocking.
protected ChainedTokenCredential ();
Protected Sub New ()
Applies to
ChainedTokenCredential(TokenCredential[])
- Source:
- ChainedTokenCredential.cs
- Source:
- ChainedTokenCredential.cs
Creates an instance with the specified TokenCredential sources.
public ChainedTokenCredential (params Azure.Core.TokenCredential[] sources);
new Azure.Identity.ChainedTokenCredential : Azure.Core.TokenCredential[] -> Azure.Identity.ChainedTokenCredential
Public Sub New (ParamArray sources As TokenCredential())
Parameters
- sources
- TokenCredential[]
The ordered chain of TokenCredential implementations to tried when calling GetToken(TokenRequestContext, CancellationToken) or GetTokenAsync(TokenRequestContext, CancellationToken)
Applies to
Azure SDK for .NET