public interface SilentAuthenticationCallback
| Modifier and Type | Method and Description |
|---|---|
void |
onError(MsalException exception)
Error occurs during the authentication.
|
void |
onSuccess(IAuthenticationResult authenticationResult)
Authentication finishes successfully.
|
void onSuccess(IAuthenticationResult authenticationResult)
authenticationResult - IAuthenticationResult that contains the success response.void onError(MsalException exception)
exception - The MsalException contains the error code, error message and cause if applicable. The exception
returned in the callback could be MsalClientException, MsalServiceException or
MsalUiRequiredException.