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?
Authentication property
Determines if authentication is required to access the server.
Type
WebAuthentications enumerationSyntax
- C#
- VB.NET
WebAuthentications Authentication {get; set; };
Property Authentication As WebAuthentications
Remarks
This property defines if wodWebServer requires client authorization to be performed before he can actually access resources on the server. When set to Required, wodWebServer will check if authorization headers exist (or, if AuthenticationType property is set to Certificate it will check if certificate is provided), and fire Authenticate event giving you chance to authenticate client from your access list.If this property is set to Optional, wodWebServer will still check if authorization headers are provided, it will fire Authenticate event - but Accept argument in that event will default to Allow - thus accepting connections unless you change Accept argument to Deny.