Creates a new user using the name and email provided.

Namespace:  Bone
Assembly:  BoneNet (in BoneNet.dll) Version: 0.1.3089.35299 (0.1.0)

Syntax

C#
public bool CreateUser(
	string user,
	string email
)
Visual Basic (Declaration)
Public Function CreateUser ( _
	user As String, _
	email As String _
) As Boolean
Visual C++
public:
bool CreateUser(
	String^ user, 
	String^ email
)

Parameters

user
Type: System..::.String
The name of the user to create.
email
Type: System..::.String
Email address to send the password to.

Return Value

true on failure.

See Also