/// <summary>
 ///     Invoked whenever SoundCloud succesfully authenticates a user
 /// </summary>
 /// <param name="context">
 ///     Contains information about the login session as well as the user
 ///     <see cref="System.Security.Claims.ClaimsIdentity" />.
 /// </param>
 /// <returns>A <see cref="Task" /> representing the completed operation.</returns>
 public virtual Task Authenticated(SoundCloudAuthenticatedContext context)
 {
     return OnAuthenticated(context);
 }
 /// <summary>
 ///     Invoked whenever SoundCloud succesfully authenticates a user
 /// </summary>
 /// <param name="context">
 ///     Contains information about the login session as well as the user
 ///     <see cref="System.Security.Claims.ClaimsIdentity" />.
 /// </param>
 /// <returns>A <see cref="Task" /> representing the completed operation.</returns>
 public virtual Task Authenticated(SoundCloudAuthenticatedContext context)
 {
     return(OnAuthenticated(context));
 }