Click or drag to resize
CloudIdentityProviderUpdateUser Method
Updates the details for the specified user.

Namespace: net.openstack.Providers.Rackspace
Assembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax
public virtual User UpdateUser(
	User user,
	CloudIdentity identity
)

Parameters

user
Type: net.openstack.Core.DomainUser
The User details to update.
identity
Type: net.openstack.Core.DomainCloudIdentity
The cloud identity to use for this request. If not specified, the DefaultIdentity for the current provider instance will be used.

Return Value

Type: User
A User object containing the details of the updated user.

Implements

IIdentityProviderUpdateUser(User, CloudIdentity)
Exceptions
ExceptionCondition
ArgumentNullExceptionIf user is .
ArgumentExceptionIf user.Id is or empty.
NotSupportedException If the provider does not support the OS-KSADM Admin Extension.

-or-

If the provider does not support the given identity type.

InvalidOperationExceptionIf identity is and no default identity is available for the provider.
ResponseExceptionIf the REST API request failed.
Remarks
The ID of the user to update is specified in user.Id. The other fields of user are either to keep the existing values or non-null to specify an updated value. The returned User instance contains the complete details of the updated user.
Examples

The following example demonstrates the use of this method using the CloudIdentityProvider implementation of IIdentityProvider. For more information about creating the provider, see CloudIdentityProvider(CloudIdentity).

User user = provider.GetUserByName("{username}", null);
user.Username = "{newUsername}";
provider.UpdateUser(user, null);
Version Information

.NET Framework

Supported in: 4.5

openstack.net

Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also