System.Runtime.InteropServices.ComTypes.FUNCKIND Enumeration

Defines how to access a function.

Syntax

public enum FUNCKIND

Remarks

For additional information about FUNCKIND, see the MSDN Library.

The common language runtime throws an exception when a COM method in native code returns an HRESULT. For more information, see How to: Map HRESULTs and Exceptions.

Members

Member NameDescription
FUNC_DISPATCH

The function can be accessed only through IDispatch.

FUNC_NONVIRTUAL

The function is accessed by static address and takes an implicit this pointer.

FUNC_PUREVIRTUAL

The function is accessed through the virtual function table (VTBL), and takes an implicit this pointer.

FUNC_STATIC

The function is accessed by static address and does not take an implicit this pointer.

FUNC_VIRTUAL

The function is accessed in the same way as System.Runtime.InteropServices.FUNCKIND.FUNC_PUREVIRTUAL, except the function has an implementation.

Requirements

Namespace: System.Runtime.InteropServices.ComTypes
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0