This topic has not yet been rated - Rate this topic

MembershipCreateUserException.MembershipCreateUserException(MembershipCreateStatus) Constructor

Initializes a new instance of the MembershipCreateUserException class with the specified StatusCode value.

Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
public MembershipCreateUserException (
	MembershipCreateStatus statusCode
)
public MembershipCreateUserException (
	MembershipCreateStatus statusCode
)
public function MembershipCreateUserException (
	statusCode : MembershipCreateStatus
)
Not applicable.

Parameters

statusCode

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.

public MembershipUser MyCreateUser(string username, string password, string email,
                                   string question, string answer)
{
  MembershipCreateStatus status;

  MembershipUser u = Membership.CreateUser(username, password, email, question, 
                                           answer, true, out status);

  if (u == null)
  {
    throw new MembershipCreateUserException(status);
  }

  return u;
}

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.