If the provided challengeHandler is registered at the provided location, clear that association such that any future challenge requests matching the location will never be handled by the provided challenge handler.

If no such location or challengeHandler registration exists, this method silently succeeds. the exact location description at which the challenge handler was originally registeredthe challenge handler to de-register.

Return Value

a reference to this object for chained call support

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

Syntax

Visual Basic
Public MustOverride Function Unregister ( _
	locationDescription As String, _
	challengeHandler As ChallengeHandler _
) As ChallengeHandler
C#
public abstract ChallengeHandler Unregister(
	string locationDescription,
	ChallengeHandler challengeHandler
)
Visual C++
public:
virtual ChallengeHandler^ Unregister(
	String^ locationDescription, 
	ChallengeHandler^ challengeHandler
) abstract

Parameters

locationDescription
Type: System..::..String
challengeHandler
Type: Kaazing.Security..::..ChallengeHandler

See Also