~ubuntu-branches/ubuntu/lucid/mono/lucid

« back to all changes in this revision

Viewing changes to mcs/class/System.Web.Mvc/System.Web.Mvc/AuthorizationContext.cs

  • Committer: Bazaar Package Importer
  • Author(s): Mirco Bauer
  • Date: 2009-07-30 19:35:10 UTC
  • mto: (5.2.2 squeeze)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090730193510-cdttfvqokq2kmdvh
Tags: upstream-2.4.2.3+dfsg
Import upstream version 2.4.2.3+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ****************************************************************************
 
2
 *
 
3
 * Copyright (c) Microsoft Corporation. All rights reserved.
 
4
 *
 
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.
 
8
 *
 
9
 * You must not remove this notice, or any other, from this software.
 
10
 *
 
11
 * ***************************************************************************/
 
12
 
 
13
namespace System.Web.Mvc {
 
14
 
 
15
    public class AuthorizationContext : ControllerContext {
 
16
 
 
17
        // parameterless constructor used for mocking
 
18
        public AuthorizationContext() {
 
19
        }
 
20
 
 
21
        public AuthorizationContext(ControllerContext controllerContext)
 
22
            : base(controllerContext) {
 
23
        }
 
24
 
 
25
        public ActionResult Result {
 
26
            get;
 
27
            set;
 
28
        }
 
29
 
 
30
    }
 
31
}