MembershipProvider.UpdateUser(MembershipUser) Method

Definition

Updates information about a user in the data source.

public:
 abstract void UpdateUser(System::Web::Security::MembershipUser ^ user);
public abstract void UpdateUser (System.Web.Security.MembershipUser user);
abstract member UpdateUser : System.Web.Security.MembershipUser -> unit
Public MustOverride Sub UpdateUser (user As MembershipUser)

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

See also