AuthenticationHandler 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
AuthenticationHandler(IAuthenticationProvider, AuthenticationHandlerOption) |
Construct a new AuthenticationHandlerAn authentication provider to pass to AuthenticationHandler for authenticating requests. |
AuthenticationHandler(IAuthenticationProvider, HttpMessageHandler, AuthenticationHandlerOption) |
Construct a new AuthenticationHandler |
AuthenticationHandler(IAuthenticationProvider, AuthenticationHandlerOption)
Construct a new AuthenticationHandlerAn authentication provider to pass to AuthenticationHandler for authenticating requests.
public AuthenticationHandler (Microsoft.Graph.IAuthenticationProvider authenticationProvider, Microsoft.Graph.AuthenticationHandlerOption authOption = default);
new Microsoft.Graph.AuthenticationHandler : Microsoft.Graph.IAuthenticationProvider * Microsoft.Graph.AuthenticationHandlerOption -> Microsoft.Graph.AuthenticationHandler
Public Sub New (authenticationProvider As IAuthenticationProvider, Optional authOption As AuthenticationHandlerOption = Nothing)
Parameters
- authenticationProvider
- IAuthenticationProvider
- authOption
- AuthenticationHandlerOption
An OPTIONAL AuthenticationHandlerOption to configure AuthenticationHandler
Applies to
AuthenticationHandler(IAuthenticationProvider, HttpMessageHandler, AuthenticationHandlerOption)
Construct a new AuthenticationHandler
public AuthenticationHandler (Microsoft.Graph.IAuthenticationProvider authenticationProvider, System.Net.Http.HttpMessageHandler innerHandler, Microsoft.Graph.AuthenticationHandlerOption authOption = default);
new Microsoft.Graph.AuthenticationHandler : Microsoft.Graph.IAuthenticationProvider * System.Net.Http.HttpMessageHandler * Microsoft.Graph.AuthenticationHandlerOption -> Microsoft.Graph.AuthenticationHandler
Public Sub New (authenticationProvider As IAuthenticationProvider, innerHandler As HttpMessageHandler, Optional authOption As AuthenticationHandlerOption = Nothing)
Parameters
- authenticationProvider
- IAuthenticationProvider
An authentication provider to pass to AuthenticationHandler for authenticating requests.
- innerHandler
- HttpMessageHandler
A HTTP message handler to pass to the AuthenticationHandler for sending requests.
- authOption
- AuthenticationHandlerOption
An OPTIONAL AuthenticationHandlerOption to configure AuthenticationHandler