A token provider that uses ADAL to retrieve tokens from Azure Active Directory
Inheritance: ITokenProvider
 public AuthenticationFactory()
 {
     TokenProvider = new AdalTokenProvider();
 }
 public AdalAccessToken(AuthenticationResult authResult, AdalTokenProvider tokenProvider, AdalConfiguration configuration)
 {
     AuthResult = authResult;
     this.tokenProvider = tokenProvider;
     Configuration = configuration;
 }
Example #3
0
 public AdalAccessToken(AuthenticationResult authResult, AdalTokenProvider tokenProvider, AdalConfiguration configuration)
 {
     AuthResult         = authResult;
     this.tokenProvider = tokenProvider;
     Configuration      = configuration;
 }