Class TypeCache
TBD
Inherited Members
Namespace: Akka.Util.Reflection
Assembly: Akka.dll
Syntax
public static class TypeCache
Methods
| Edit this page View SourceGetType(string)
Gets the Type with the specified name, performing a case-sensitive search and throw an exception if the type is not found.
Declaration
public static Type GetType(string typeName)
Parameters
Type | Name | Description |
---|---|---|
string | typeName | 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. |
Returns
Type | Description |
---|---|
Type | The type with the specified name. If the type is not found, an exception is thrown. |