COMClassInfo Constructor (Type, Type, String) |
Creates a new COMClassInfo using the COM class and interface types. The function names to retrieve the addresses for should be provided as strings
Namespace:
EasyHook
Assembly:
EasyHook (in EasyHook.dll) Version: 2.7.6684.0 (2.7.6684.0)
Syntax public COMClassInfo(
Type classtype,
Type interfacetype,
params string[] methodNames
)
Public Sub New (
classtype As Type,
interfacetype As Type,
ParamArray methodNames As String()
)
public:
COMClassInfo(
Type^ classtype,
Type^ interfacetype,
... array<String^>^ methodNames
)
new :
classtype : Type *
interfacetype : Type *
methodNames : string[] -> COMClassInfo
Parameters
- classtype
- Type: SystemType
The COM object's class type - interfacetype
- Type: SystemType
The COM object's interface type - methodNames
- Type: SystemString
The methods to retrieve addresses for
See Also