UtilsIsComInterfaceSupported Method |
Determines whether a COM object supports the specified interface.
Namespace: BlueCieloECM.InnoCielo.MeridianAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax public static bool IsComInterfaceSupported(
Type interfaceType,
Object comObject
)
Public Shared Function IsComInterfaceSupported (
interfaceType As Type,
comObject As Object
) As Boolean
public:
static bool IsComInterfaceSupported(
Type^ interfaceType,
Object^ comObject
)
static member IsComInterfaceSupported :
interfaceType : Type *
comObject : Object -> bool
Parameters
- interfaceType
- Type: SystemType
The interface to query. - comObject
- Type: SystemObject
The COM object to query the interface on.
Return Value
Type:
BooleanA value indicating whether the interface is supported by the object.
See Also