Determines whether an exception that
occurred during the processing of a security token should be
handled using the defined ExceptionMap.
Namespace: Microsoft.IdentityModel
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Visual Basic |
Dim instance As ExceptionMapper
Dim ex As Exception
Dim returnValue As Boolean
returnValue = instance.HandleSecurityTokenProcessingException(ex)
|
Syntax
Visual Basic |
Public Overridable Function HandleSecurityTokenProcessingException ( _
ex As Exception _
) As Boolean
|
C# |
public virtual bool HandleSecurityTokenProcessingException (
Exception ex
)
|
C++ |
public:
virtual bool HandleSecurityTokenProcessingException (
Exception^ ex
)
|
J# |
public boolean HandleSecurityTokenProcessingException (
Exception ex
)
|
JScript |
public function HandleSecurityTokenProcessingException (
ex : Exception
) : boolean
|
Parameters
- ex
-
The input exception.
Return Value
A boolean value indicating whether the exception should be handled
using the defined ExceptionMap.
Exceptions
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also