PropertyKind Enum

Definition

An enumeration that describes the type of argument being passed.

public enum class PropertyKind
public enum PropertyKind
type PropertyKind = 
Public Enum PropertyKind
Inheritance
PropertyKind

Fields

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.

Applies to