Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 0f18ff1

Browse files
TimHessTratcher
authored andcommitted
Include AuthenticationTicket.Properties in AuthenticationTicket success result handling #1765 (#1767)
1 parent e031eff commit 0f18ff1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.AspNetCore.Authentication/HandleRequestResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class HandleRequestResult : AuthenticateResult
3333
{
3434
throw new ArgumentNullException(nameof(ticket));
3535
}
36-
return new HandleRequestResult() { Ticket = ticket };
36+
return new HandleRequestResult() { Ticket = ticket, Properties = ticket.Properties };
3737
}
3838

3939
/// <summary>

0 commit comments

Comments
 (0)