adds some comments

This commit is contained in:
Shannon
2016-09-08 09:30:13 +02:00
parent 48786fcae1
commit 893c2a99be

View File

@@ -8,7 +8,16 @@ namespace Umbraco.Web.Security.Identity
{
public static class AuthenticationOptionsExtensions
{
/// <summary>
/// When trying to implement an Azure AD B2C provider or other OAuth provider that requires a customized Challenge Result in order to work then
/// this must be used.
/// </summary>
/// <param name="authOptions"></param>
/// <param name="authProperties"></param>
/// <remarks>
/// See: http://issues.umbraco.org/issue/U4-7353
/// </remarks>
public static void SetSignInChallengeResultCallback(
this AuthenticationOptions authOptions,
Func<IOwinContext, AuthenticationProperties> authProperties)