20 lines
676 B
C#
20 lines
676 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNet.Http;
|
|
using Microsoft.AspNet.Http.Authentication;
|
|
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
|
|
|
|
namespace Microsoft.AspNet.Authentication.OpenIdConnect
|
|
{
|
|
public class AuthorizationResponseReceivedContext : BaseOpenIdConnectContext
|
|
{
|
|
public AuthorizationResponseReceivedContext(HttpContext context, OpenIdConnectOptions options)
|
|
: base(context, options)
|
|
{
|
|
}
|
|
|
|
public AuthenticationProperties Properties { get; set; }
|
|
}
|
|
}
|