2010-04-28 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.Security / ValidatePasswordEventArgs.cs
1 //
2 // System.Web.Security.ValidatePasswordEventArgs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (C) 2005 Novell, inc.
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 using System;
31 using System.Runtime.CompilerServices;
32
33 namespace System.Web.Security
34 {
35 #if NET_4_0
36         [TypeForwardedFrom ("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")]
37 #endif
38         public sealed class ValidatePasswordEventArgs: EventArgs
39         {
40                 bool cancel;
41                 Exception exception;
42                 bool isNewUser;
43                 string userName;
44                 string password;
45                 
46                 public ValidatePasswordEventArgs (string userName, string password, bool isNewUser)
47                 {
48                         this.isNewUser = isNewUser;
49                         this.userName = userName;
50                         this.password = password;
51                 }
52                 
53                 public bool Cancel {
54                         get { return cancel; }
55                         set { cancel = value; }
56                 }
57                 
58                 public Exception FailureInformation {
59                         get { return exception; }
60                         set { exception = value; }
61                 }
62                 
63                 public bool IsNewUser {
64                         get { return isNewUser; }
65                 }
66                 
67                 public string UserName {
68                         get { return userName; }
69                 }
70                 
71                 public string Password {
72                         get { return password; }
73                 }
74         }
75 }
76