2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / AuthorizationContext.cs
blob434875b0e8bcc16c35f7685bfc9759f6691470bc
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
15 public class AuthorizationContext : ControllerContext {
17 // parameterless constructor used for mocking
18 public AuthorizationContext() {
21 public AuthorizationContext(ControllerContext controllerContext)
22 : base(controllerContext) {
25 public ActionResult Result {
26 get;
27 set;