AuthenticateEventArgs 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 AuthenticateEventArgs class.
Overloads
AuthenticateEventArgs() |
Initializes a new instance of the AuthenticateEventArgs class with the Authenticated property set to |
AuthenticateEventArgs(Boolean) |
Initializes a new instance of the AuthenticateEventArgs class. |
AuthenticateEventArgs()
Initializes a new instance of the AuthenticateEventArgs class with the Authenticated property set to false
.
public:
AuthenticateEventArgs();
public AuthenticateEventArgs ();
Public Sub New ()
See also
Applies to
AuthenticateEventArgs(Boolean)
Initializes a new instance of the AuthenticateEventArgs class.
public:
AuthenticateEventArgs(bool authenticated);
public AuthenticateEventArgs (bool authenticated);
new System.Web.UI.WebControls.AuthenticateEventArgs : bool -> System.Web.UI.WebControls.AuthenticateEventArgs
Public Sub New (authenticated As Boolean)
Parameters
- authenticated
- Boolean
true
if the user is authenticated; otherwise, false
.