FederatedAuthenticationProtocolHandleError Method

Instructs the application to handle an error. This typically results in a redirection to an error page which displays the error message to the user.

Namespace:  Dundas.BI.AccountServices.Extensibility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
protected void HandleError(
	string providerId,
	string message
)

Parameters

providerId
Type: SystemString
The ID of the federated authentication provider associated with the error.
message
Type: SystemString
The error message which should be shown to the user.
Remarks
Note Notes to Inheritors
It is the responsibility of the protocol implementation to log the error (including any relevant technical details that are not included in the message parameter) to the application log. This can be achieved by calling the appropriate method on the Logger property.
See Also