Click or drag to resize

UserProfileFactoryNewUserProfile Method

Create a new empty instance of user profile

Namespace:  AskiaPortalCmn
Assembly:  AskiaPortalCmn (in AskiaPortalCmn.dll) Version: 1.7.0-build068
Syntax
public static IUserProfile NewUserProfile(
	IContext context
)

Parameters

context
Type: AskiaPortalCmnIContext
Context of execution

Return Value

Type: IUserProfile
Return a new empty user profile or null if the user in the context doesn't have enough right to create a user profile
Examples

Create a new user profile and save it

var context = ContextFactory.CreateByUserGuid(Guid.Parse("20BE5F84-F006-49A0-9674-4B16A090AF2D"));   
var contextValidation = context.Validate();
if (!contextValidation.Success)
{
    throw contextValidation.Exception;
}

var userProfile = UserProfileFactory.NewUserProfile(context);
if (userProfile == null)
{
    Console.Error.WriteLine("Could not create a new user profile");
    return;
}
userProfile.Name = "Survey scripter";
var saveResult = userProfile.Save();
if (saveResult.Success)
{
    Console.WriteLine("The user profile `{0}` (Id={1}) was successfully saved",
                userProfile.Name, userProfile.Id);
}
else
{
    Console.Error.Write(saveResult.Exception.Message);
}
See Also