TokenProvider 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
TokenProvider(Boolean, Boolean) |
Initializes a new instance of the TokenProvider class. |
TokenProvider(Boolean, Boolean, TokenScope) |
Initializes a new instance of the TokenProvider class. |
TokenProvider(Boolean, Boolean, Int32, TokenScope) |
Initializes a new instance of the TokenProvider class. |
TokenProvider(Boolean, Boolean)
Initializes a new instance of the TokenProvider class.
protected TokenProvider (bool cacheTokens, bool supportHttpAuthToken);
new Microsoft.ServiceBus.TokenProvider : bool * bool -> Microsoft.ServiceBus.TokenProvider
Protected Sub New (cacheTokens As Boolean, supportHttpAuthToken As Boolean)
Parameters
- cacheTokens
- Boolean
true if new security tokens are being cached; otherwise, false.
- supportHttpAuthToken
- Boolean
true if web token is supported by this provider; otherwise, false.
Applies to
TokenProvider(Boolean, Boolean, TokenScope)
Initializes a new instance of the TokenProvider class.
protected TokenProvider (bool cacheTokens, bool supportHttpAuthToken, Microsoft.ServiceBus.TokenScope tokenScope);
new Microsoft.ServiceBus.TokenProvider : bool * bool * Microsoft.ServiceBus.TokenScope -> Microsoft.ServiceBus.TokenProvider
Protected Sub New (cacheTokens As Boolean, supportHttpAuthToken As Boolean, tokenScope As TokenScope)
Parameters
- cacheTokens
- Boolean
true if new security tokens are being cached; otherwise, false.
- supportHttpAuthToken
- Boolean
true if web token is supported by this provider; otherwise, false.
- tokenScope
- TokenScope
The token scope associated with the provider.
Applies to
TokenProvider(Boolean, Boolean, Int32, TokenScope)
Initializes a new instance of the TokenProvider class.
protected TokenProvider (bool cacheTokens, bool supportHttpAuthToken, int cacheSize, Microsoft.ServiceBus.TokenScope tokenScope);
new Microsoft.ServiceBus.TokenProvider : bool * bool * int * Microsoft.ServiceBus.TokenScope -> Microsoft.ServiceBus.TokenProvider
Protected Sub New (cacheTokens As Boolean, supportHttpAuthToken As Boolean, cacheSize As Integer, tokenScope As TokenScope)
Parameters
- cacheTokens
- Boolean
true if new security tokens are being cached; otherwise, false.
- supportHttpAuthToken
- Boolean
true if web token is supported by this provider; otherwise, false.
- cacheSize
- Int32
The size of the cache.
- tokenScope
- TokenScope
The token scope associated with the provider.
Applies to
Azure SDK for .NET