PropertyKind Enum

Definition

An enumeration that describes the type of argument being passed.

C#
public enum PropertyKind
Inheritance
PropertyKind

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.

Applies to

Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1