public static AuthenticationResult SuccessWithSasToken(Identity identity, string token)
 {
     return(new AuthenticationResult
     {
         Properties = AuthenticationProperties.SuccessWithSasToken(token),
         Identity = identity
     });
 }