PropertyKind 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.
An enumeration that describes the type of argument being passed.
public enum class PropertyKind
public enum PropertyKind
type PropertyKind =
Public Enum PropertyKind
- Inheritance
Fields
Name | Value | Description |
---|---|---|
InArgument | 0 | The argument is an input-only parameter, meaning that it can be used only to pass a value to a method. |
InOutArgument | 1 | The argument is an input/output parameter, meaning that it can be used for passing a value to a method and for getting back a value from a method. |
OutArgument | 2 | The argument is an output-only parameter, meaning that it can be used only to pass a value back from a method. |
Property | 3 | The argument is a property. |