MembershipCreateUserException Constructor (MembershipCreateStatus)
.NET Framework (current version)
Initializes a new instance of the MembershipCreateUserException class with the specified StatusCode value.
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
Parameters
- statusCode
-
Type:
System.Web.Security::MembershipCreateStatus
A MembershipCreateStatus enumeration value that describes the reason for the exception.
The MembershipCreateUserException class is thrown by the Membership::CreateUser method when the user is not created.
The statusCode parameter enables you to indicate why the MembershipCreateUserException was thrown. The statusCode parameter value is exposed by the StatusCode property.
The following code example calls the CreateUser method to create a new membership user. If the user creation fails, a MembershipCreateUserException is thrown with the StatusCode returned by the CreateUser method.
.NET Framework
Available since 2.0
Available since 2.0
Show: