Include AuthenticationTicket.Properties in AuthenticationTicket success result handling #1765 (#1767)

This commit is contained in:
Tim Hess 2018-05-23 10:25:19 -05:00 committed by Chris Ross
parent e031eff146
commit 0f18ff1b9f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ namespace Microsoft.AspNetCore.Authentication
{
throw new ArgumentNullException(nameof(ticket));
}
return new HandleRequestResult() { Ticket = ticket };
return new HandleRequestResult() { Ticket = ticket, Properties = ticket.Properties };
}
/// <summary>