vsCMParameterKind 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.
Specifies expected parameter behavior.
public enum class vsCMParameterKind
public enum class vsCMParameterKind
enum vsCMParameterKind
[System.Runtime.InteropServices.Guid("2366AEF3-BA49-4A96-B4A1-B8BF1ACB2600")]
public enum vsCMParameterKind
[<System.Runtime.InteropServices.Guid("2366AEF3-BA49-4A96-B4A1-B8BF1ACB2600")>]
type vsCMParameterKind =
Public Enum vsCMParameterKind
- Inheritance
-
vsCMParameterKind
- Attributes
Fields
Name | Value | Description |
---|---|---|
vsCMParameterKindNone | 0 | The parameter has no specified keywords. |
vsCMParameterKindIn | 1 | The parameter has been specified as an in parameter. (This is the equivalent of |
vsCMParameterKindRef | 2 | A ref parameter. (This is the equivalent of |
vsCMParameterKindOut | 4 | An out parameter. |
vsCMParameterKindOptional | 8 | An optional parameter. |
vsCMParameterKindParamArray | 16 | A parameter array. |