[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Resolves a type using the assembly qualified type name. If the type
can not be resolved using a simple Type.GetType() [which many can not],
then the method will check all assemblies currently loaded into the
AppDomain.
Namespace: net.esper.util
Assembly:
NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function ResolveType ( _
assemblyQualifiedTypeName As String _
) As Type |
C# |
---|
public static Type ResolveType (
string assemblyQualifiedTypeName
) |
Visual C++ |
---|
public:
static Type^ ResolveType (
String^ assemblyQualifiedTypeName
) |
Parameters
- assemblyQualifiedTypeName
- System.String
Name of the assembly qualified type.
Return Value