EAPUtilLoadComponent Method (String, String, String, String) |
Load a component DLL into the current AppDomain.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static Object LoadComponent(
string assemblyName,
string path,
string className,
string interfaceName
)
Public Shared Function LoadComponent (
assemblyName As String,
path As String,
className As String,
interfaceName As String
) As Object
Parameters
- assemblyName
- Type: SystemString
The filename of the assembly in which the component resides. - path
- Type: SystemString
The path to the file in which the assembly resides. - className
- Type: SystemString
The class to load. - interfaceName
- Type: SystemString
The interface to access.
Return Value
Type:
ObjectAn instance of the requested class or null.
See Also