Click or drag to resize
Akka.NETTypeExtensions Methods

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