21 lines
596 B
C#
21 lines
596 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 System.Collections.Generic;
|
|
using Microsoft.Framework.Internal;
|
|
|
|
namespace Microsoft.AspNet.Mvc
|
|
{
|
|
public class AuthorizationContext : FilterContext
|
|
{
|
|
public AuthorizationContext(
|
|
[NotNull] ActionContext actionContext,
|
|
[NotNull] IList<IFilter> filters)
|
|
: base(actionContext, filters)
|
|
{
|
|
}
|
|
|
|
public virtual IActionResult Result { get; set; }
|
|
}
|
|
}
|