Class BinaryExceptionClassifier
Inheritance
System.Object
BinaryExceptionClassifier
Assembly: Steeltoe.Common.dll
Syntax
public class BinaryExceptionClassifier : SubclassClassifier<Exception, bool>, IClassifier<Exception, bool>
Constructors
|
Edit this page
View Source
BinaryExceptionClassifier(Dictionary<Type, Boolean>)
Declaration
public BinaryExceptionClassifier(Dictionary<Type, bool> typeMap)
Parameters
Type |
Name |
Description |
Dictionary<Type, System.Boolean> |
typeMap |
|
|
Edit this page
View Source
BinaryExceptionClassifier(Dictionary<Type, Boolean>, Boolean)
Declaration
public BinaryExceptionClassifier(Dictionary<Type, bool> typeMap, bool defaultValue)
Parameters
Type |
Name |
Description |
Dictionary<Type, System.Boolean> |
typeMap |
|
System.Boolean |
defaultValue |
|
|
Edit this page
View Source
BinaryExceptionClassifier(IList<Type>)
Declaration
public BinaryExceptionClassifier(IList<Type> exceptionClasses)
Parameters
Type |
Name |
Description |
IList<Type> |
exceptionClasses |
|
|
Edit this page
View Source
BinaryExceptionClassifier(IList<Type>, Boolean)
Declaration
public BinaryExceptionClassifier(IList<Type> exceptionClasses, bool defaultValue)
Parameters
Type |
Name |
Description |
IList<Type> |
exceptionClasses |
|
System.Boolean |
defaultValue |
|
|
Edit this page
View Source
BinaryExceptionClassifier(Boolean)
Declaration
public BinaryExceptionClassifier(bool defaultValue)
Parameters
Type |
Name |
Description |
System.Boolean |
defaultValue |
|
Properties
|
Edit this page
View Source
TraverseInnerExceptions
Declaration
public bool TraverseInnerExceptions { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
|
Edit this page
View Source
Classify(Exception)
Declaration
public override bool Classify(Exception classifiable)
Parameters
Type |
Name |
Description |
Exception |
classifiable |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
Steeltoe.Common.Util.SubclassClassifier<Exception, System.Boolean>.Classify(Exception)
Implements