| LoggingBusIsSubClassification Method |
Determines whether a specified classifier, child, is a subclass of another classifier, parent.
Namespace:
Akka.Event
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax protected override bool IsSubClassification(
Type parent,
Type child
)
abstract IsSubClassification :
parent : Type *
child : Type -> bool
override IsSubClassification :
parent : Type *
child : Type -> bool
Parameters
- parent
- Type: SystemType
The potential parent of the classifier that is being checked. - child
- Type: SystemType
The classifier that is being checked.
Return Value
Type:
Booleantrue if the
child classifier is a subclass of
parent; otherwise
false.
See Also