Provide a general login handler to be used in association with this challenge handler. The login handler is used to assist in obtaining credentials to respond to any challenge requests when this challenge handler handles the request. a login handler for credentials.

Return Value

this challenge handler object, to support chained calls
Get the general login handler associated with this challenge handler. A login handler is used to assist in obtaining credentials to respond to challenge requests.

Return Value

a login handler to assist in providing credentials, or {@code null} if none has been established yet.

Namespace:  Kaazing.Security
Assembly:  Kaazing.Gateway (in Kaazing.Gateway.dll)

Syntax

Visual Basic
Public MustOverride Property LoginHandler As LoginHandler
	Get
	Set
C#
public abstract LoginHandler LoginHandler { get; set; }
Visual C++
public:
virtual property LoginHandler^ LoginHandler {
	LoginHandler^ get () abstract;
	void set (LoginHandler^ value) abstract;
}

See Also