| TypeCacheGetType Method |
Gets the
Type with the specified name, performing a case-sensitive search and throw an exception if the type is not found.
Namespace:
Akka.Util.Reflection
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public static Type GetType(
string typeName
)
static member GetType :
typeName : string -> Type
Parameters
- typeName
- Type: SystemString
The assembly-qualified name of the type to get. See AssemblyQualifiedName.
If the type is in Akka.dll or in Mscorlib.dll, it is sufficient to supply the type name qualified by its namespace.
Return Value
Type:
Type
The type with the specified name. If the type is not found, an exception is thrown.
Return Value
Type:
TypeTBD
See Also