Click or drag to resize
Akka.NETTypeExtensions Class
Class TypeExtensions.
Inheritance Hierarchy
SystemObject
  Akka.UtilTypeExtensions

Namespace:  Akka.Util
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static class TypeExtensions

The TypeExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCode exampleImplements(Type, Type)
Returns true if type implements/inherits moreGeneralType.
Examples

typeof(object[]).Implements(typeof(IEnumerable)) --> true

Public methodStatic memberCode exampleImplementsT(Type)
Returns true if type implements/inherits T.
Examples

typeof(object[]).Implements<IEnumerable>() --> true

Public methodStatic memberTypeQualifiedName
Utility to be used by implementers to create a manifest from the type. The manifest is used to look up the type on deserialization.
Top
See Also