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.3.0.1000)
Syntax protected void HandleError(
string providerId,
string message
)
Protected Sub HandleError (
providerId As String,
message As String
)
protected:
void HandleError(
String^ providerId,
String^ message
)
member HandleError :
providerId : string *
message : string -> unit
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 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