Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Server.WebServer
- WeOnlyDo.Server.WebHeader
- WeOnlyDo.Server.WebHeaders
- WeOnlyDo.Server.WebRequest
- WeOnlyDo.Server.WebResponse
- WeOnlyDo.Server.WebSessions
- WeOnlyDo.Server.WebSessionVar
- WeOnlyDo.Server.WebSessionVars
- WeOnlyDo.Server.WebUpload
- WeOnlyDo.Server.WebUploads
- WeOnlyDo.Server.WebUser
- WeOnlyDo.Server.WebUsers
- How to get support?
AuthenticateEvent event
Fires when user wants to authenticate.
Syntax
- C#
- VB.NET
delegate void AuthenticateDelegate(object Sender, WebAuthenticateArgs Args);
The AuthenticateEvent(Args.Action,Args.AuthenticationType,Args.Login,Args.Password,Args.User) syntax has these parts:
The AuthenticateEvent(Args.Action,Args.AuthenticationType,Args.Login,Args.Password,Args.User) syntax has these parts:
Args.Action | WebActions enumeration value. Determines if authentication is accepted. |
Args.AuthenticationType | WebAuthenticationTypes enumeration value. Provides type of authentication used by the client. |
Args.Login | String. Holds login/username provided by the user. |
Args.Password | String. Holds password provided by the user. |
Args.User | WebUser object. Reference to the user who is connected to the server. |
Delegate Sub AuthenticateDelegate(ByVal Sender as Object, ByVal Args As WebAuthenticateArgs)
The AuthenticateEvent(Args.Action,Args.AuthenticationType,Args.Login,Args.Password,Args.User) syntax has these parts:
The AuthenticateEvent(Args.Action,Args.AuthenticationType,Args.Login,Args.Password,Args.User) syntax has these parts:
Args.Action | WebActions enumeration value. Determines if authentication is accepted. |
Args.AuthenticationType | WebAuthenticationTypes enumeration value. Provides type of authentication used by the client. |
Args.Login | String. Holds login/username provided by the user. |
Args.Password | String. Holds password provided by the user. |
Args.User | WebUser object. Reference to the user who is connected to the server. |