Click or drag to resize

INetworkAuthenticateHandler Property

Gets or sets a handler that is used when the website requests authentication.

Namespace:  DotNetBrowser.Net
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
IHandler<AuthenticateParameters, AuthenticateResponse> AuthenticateHandler { get; set; }

Property Value

Type: IHandlerAuthenticateParameters, AuthenticateResponse
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe INetwork object has already been disposed.
Remarks

Use the Continue(String, String) method to continue authentication process.

Use the Cancel method to cancel authentication process.

If exception occurs inside the handler, the default behavior will be applied - the Cancel method will be used.

See Also