MembershipUsersAdd Method (String, String, String, String, UserProfile, Guid) |
Adds a user.
Namespace: ConnectedApps.Cms.Sdk.DataAssembly: ConnectedApps.Cms.Sdk.Data (in ConnectedApps.Cms.Sdk.Data.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Guid Add(
string firstName,
string lastName,
string email,
string password,
UserProfile profile,
Guid[] groups
)
Public Function Add (
firstName As String,
lastName As String,
email As String,
password As String,
profile As UserProfile,
groups As Guid()
) As Guid
public:
Guid Add(
String^ firstName,
String^ lastName,
String^ email,
String^ password,
UserProfile^ profile,
array<Guid>^ groups
)
member Add :
firstName : string *
lastName : string *
email : string *
password : string *
profile : UserProfile *
groups : Guid[] -> Guid
Parameters
- firstName
- Type: SystemString
The first name of the user. - lastName
- Type: SystemString
The last name of the user. - email
- Type: SystemString
The email of the user. - password
- Type: SystemString
The password of the user. - profile
- Type: ConnectedApps.Cms.EntitiesUserProfile
The profile containing custom data. - groups
- Type: SystemGuid
A collection of membership groups to assign to the user.
Return Value
Type:
Guid
See Also