Checks if member account creation is allowed.

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

Syntax

C#
protected virtual bool IsAccountCreationAllowed(
	string username,
	string email
)
Visual Basic
Protected Overridable Function IsAccountCreationAllowed ( 
	username As String,
	email As String
) As Boolean
Visual C++
protected:
virtual bool IsAccountCreationAllowed(
	String^ username, 
	String^ email
)
F#
abstract IsAccountCreationAllowed : 
        username : string * 
        email : string -> bool 
override IsAccountCreationAllowed : 
        username : string * 
        email : string -> bool 

Parameters

username
Type: System..::..String
Username to check.
email
Type: System..::..String
E-mail to check.

Return Value

Type: Boolean
True if creation is alowed, False otherwise.

See Also