LoginCancelEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the LoginCancelEventArgs class.
Overloads
LoginCancelEventArgs() |
Initializes a new instance of the LoginCancelEventArgs class with the Cancel property set to |
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
.