How to create an user attributes ?
You can create multiple user attributes The user attributes have a type
You can create multiple user attributes The user attributes have a type
In Visual-Guard, the “Principal” represents the currently authenticated and authorized user. Once a user is authenticated in runtime, you can access the current principal using runtime.Principal. The Principal object provides a variety of properties that allow you to access information
// Get a user var tempUser = runtime.Membership.GetUser("tempUser"); //Delete user runtime.Membership.DeleteUser(tempUser);
Get Users from VGRepository Find users by user information (ex. email, username, locked, approved, user attributes etc) Find users by profile attributes
How to update the basic information of the user ? Update user details (like Firstname,Lastname, email, Description etc) How to update an user profile ? Get the value of the profile Update the profile values of the user
The VGSecurityRuntime is a crucial component of the Visual-Guard .NET API. It provides access to various functionalities of the API, such as user management, role management, and permission management. To use the VGSecurityRuntime, you first need to add the following
In Visual-Guard, maintaining secure and updated user credentials is vital. The Visual-Guard .NET API provides methods to change a user’s password, either by the user themselves or by an administrator. Here’s a brief overview of each method: Administrator Forcing a
In Visual-Guard, user management is a key aspect of maintaining secure access to your applications. The Visual-Guard .NET API provides methods to create users in different contexts, including Visual-Guard users, Windows account users, and Database account users. Here’s a brief
Introduction In Visual-Guard, user authentication is a crucial step that verifies the identity of a user trying to gain access to an application. The Visual-Guard .NET API provides various methods to authenticate a user, including VisualGuard authentication, Database authentication, Windows
Update list of Visual-Guard