| TypeExtensions Class |
Namespace: Akka.Util
The TypeExtensions type exposes the following members.
| Name | Description | |
|---|---|---|
| Implements(Type, Type) |
Returns true if type implements/inherits moreGeneralType.
typeof(object[]).Implements(typeof(IEnumerable)) --> true | |
| ImplementsT(Type) |
Returns true if type implements/inherits T.
typeof(object[]).Implements<IEnumerable>() --> true | |
| TypeQualifiedName |
Utility to be used by implementers to create a manifest from the type.
The manifest is used to look up the type on deserialization.
|