Exposes and updates membership user information in the Visual Guard repository.

Namespace: Novalys.VisualGuard.Security.Membership
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
[SerializableAttribute]
public sealed class VGMembershipUser : VGIMembershipObject, 
	VGIDocumentationMembershipObject
Visual Basic
<SerializableAttribute>
Public NotInheritable Class VGMembershipUser
	Implements VGIMembershipObject, VGIDocumentationMembershipObject

Remarks

The VGMembershipUser object is used to represent a single membership user in the Visual Guard repository. It exposes information about the membership user such as the e-mail address, and provides functionality for the membership user such as the ability to reset his or her password.

A VGMembershipUser object is returned by the GetUser(String) and CreateUser(String, String) methods or as part of a VGMembershipUserCollection returned by the GetAllUsers()()()(), FindUsersByName(String), and FindUsersByEmail(String) methods.

A VGMembershipUser object is required by the UpdateUser(VGMembershipUser) method when you want to update the information for an existing membership user.

Inheritance Hierarchy

System..::..Object
  Novalys.VisualGuard.Security.Membership..::..VGMembershipUser

See Also