예제 #1
0
 public static void ForgetUserIdentity(this HttpResponseBase response)
 {
     response.SaveUserIdentity(
         new UserModel
     {
         Id        = string.Empty,
         Username  = string.Empty,
         Email     = string.Empty,
         FirstName = string.Empty,
         LastName  = string.Empty
     });
 }