Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MembershipCreateUserException.cs « System.Web.Security « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08ea2c4aa5714e502c977b3abdab110d0e2d9749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// System.Web.Security.MembershipCreateUserException
//
// Authors:
//	Ben Maurer (bmaurer@users.sourceforge.net)
//
// (C) 2003 Ben Maurer
//

#if NET_2_0
namespace System.Web.Security {
	[MonoTODO ("make strings for the messages")]
	public class MembershipCreateUserException : HttpException {
		public MembershipCreateUserException (MembershipCreateStatus statusCode) : base (statusCode.ToString ())
		{
			this.statusCode = statusCode;
		}
		
		MembershipCreateStatus statusCode;
		public MembershipCreateStatus StatusCode {
			get { return statusCode; }
		}
	}
}
#endif