Creates a user account manually, without using Membership.CreateUser.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
bool CreateUserManually(
	string userName
)
Visual Basic
Function CreateUserManually ( 
	userName As String
) As Boolean
Visual C++
bool CreateUserManually(
	String^ userName
)
F#
abstract CreateUserManually : 
        userName : string -> bool 

Parameters

userName
Type: System..::..String
User name.

Return Value

Type: Boolean
True if the operation was successfull and aspnetuser and aspnetmembership entities were created, false otherwise.

See Also