LoginCancelEventArgs Constructors

Definition

Initializes a new instance of the LoginCancelEventArgs class.

Overloads

LoginCancelEventArgs()

Initializes a new instance of the LoginCancelEventArgs class with the Cancel property set to false.

LoginCancelEventArgs(Boolean)

Initializes a new instance of the LoginCancelEventArgs class with the Cancel property set to the specified value.

LoginCancelEventArgs()

Initializes a new instance of the LoginCancelEventArgs class with the Cancel property set to false.

public:
 LoginCancelEventArgs();
public LoginCancelEventArgs ();
Public Sub New ()

See also

Applies to

LoginCancelEventArgs(Boolean)

Initializes a new instance of the LoginCancelEventArgs class with the Cancel property set to the specified value.

public:
 LoginCancelEventArgs(bool cancel);
public LoginCancelEventArgs (bool cancel);
new System.Web.UI.WebControls.LoginCancelEventArgs : bool -> System.Web.UI.WebControls.LoginCancelEventArgs
Public Sub New (cancel As Boolean)

Parameters

cancel
Boolean

true to cancel the event; otherwise, false.

See also

Applies to