[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
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 in the assembly search path.
Namespace: net.esper.util
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function ResolveType ( _ assemblyQualifiedTypeName As String, _ assemblySearchPath As IEnumerable(Of Assembly) _ ) As Type |
C# |
---|
public static Type ResolveType ( string assemblyQualifiedTypeName, IEnumerable<Assembly> assemblySearchPath ) |
Visual C++ |
---|
public: static Type^ ResolveType ( String^ assemblyQualifiedTypeName, IEnumerable<Assembly^>^ assemblySearchPath ) |
Parameters
- assemblyQualifiedTypeName
- System.String
Name of the assembly qualified type.
- assemblySearchPath
- System.Collections.Generic.IEnumerable<(Of T>)
The assembly search path.