Initializes a new instance of the VGValidatePasswordEventArgs class with an action, the node it was performed upon, and the parent node.

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

Syntax

C#
public VGValidatePasswordEventArgs(
	string userName,
	string password,
	bool isNewUser
)
Visual Basic
Public Sub New ( 
	userName As String,
	password As String,
	isNewUser As Boolean
)

Parameters

userName
Type: System..::..String
The membership user name for the current create-user, change-password, or reset-password action.
password
Type: System..::..String
The new password for the specified membership user.
isNewUser
Type: System..::..Boolean
true if the event is occurring while a new user is being created; otherwise, false.

See Also