MembershipProvider.UpdateUser(MembershipUser) Method

Definition

Updates information about a user in the data source.

C#
public abstract void UpdateUser(System.Web.Security.MembershipUser user);

Parameters

user
MembershipUser

A MembershipUser object that represents the user to update and the updated information for the user.

Examples

For an example of a MembershipProvider implementation, see Implementing a Profile Provider.

Remarks

Takes, as input, a MembershipUser object populated with user information and updates the data source with the supplied values.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also