INVOKEKIND Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
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.