ClientFormsAuthenticationMembershipProvider.CreateUser Method

Definition

This method is not used by this class.

public:
 override System::Web::Security::MembershipUser ^ CreateUser(System::String ^ username, System::String ^ password, System::String ^ email, System::String ^ passwordQuestion, System::String ^ passwordAnswer, bool isApproved, System::Object ^ providerUserKey, [Runtime::InteropServices::Out] System::Web::Security::MembershipCreateStatus % status);
public override System.Web.Security.MembershipUser CreateUser (string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status);
override this.CreateUser : string * string * string * string * string * bool * obj * MembershipCreateStatus -> System.Web.Security.MembershipUser
Public Overrides Function CreateUser (username As String, password As String, email As String, passwordQuestion As String, passwordAnswer As String, isApproved As Boolean, providerUserKey As Object, ByRef status As MembershipCreateStatus) As MembershipUser

Parameters

username
String

Not used.

password
String

Not used.

email
String

Not used.

passwordQuestion
String

Not used.

passwordAnswer
String

Not used.

isApproved
Boolean

Not used.

providerUserKey
Object

Not used.

status
MembershipCreateStatus

Not used.

Returns

Not applicable. This method always throws an exception.

Exceptions

Always thrown.

Remarks

You cannot create, delete, or modify user information by using the ClientFormsAuthenticationMembershipProvider class.

Applies to

See also