INVOKEKIND Enum

Definition

Caution

Use System.Runtime.InteropServices.ComTypes.INVOKEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202

Use INVOKEKIND instead.

public enum class INVOKEKIND
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum INVOKEKIND
[System.Serializable]
[System.Obsolete("Use System.Runtime.InteropServices.ComTypes.INVOKEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)]
public enum INVOKEKIND
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type INVOKEKIND = 
[<System.Serializable>]
[<System.Obsolete("Use System.Runtime.InteropServices.ComTypes.INVOKEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)>]
type INVOKEKIND = 
Public Enum INVOKEKIND
Inheritance
INVOKEKIND
Attributes

Fields

INVOKE_FUNC 1

The member is called using a normal function invocation syntax.

INVOKE_PROPERTYGET 2

The function is invoked using a normal property-access syntax.

INVOKE_PROPERTYPUT 4

The function is invoked using a property value assignment syntax.

INVOKE_PROPERTYPUTREF 8

The function is invoked using a property reference assignment syntax.

Remarks

For additional information about INVOKEKIND, see the MSDN Library.

Applies to