Enumerates all possible kinds of method parameters. The parameter kind indicates whether the parameter is by ref or by value and its direction.
Namespace: PostSharp.Reflection
Assembly: PostSharp.dll
Syntax
public enum ParameterKind : byteFields
| Name | Description |
|---|---|
| ByRefIn | The read-only parameter passed by reference ( |
| ByRefInOut |
|
| ByRefOut |
|
| InValue | Normal (input) parameter. |
| ReturnRef | The reference return value parameter ( |
| ReturnValue | The return value parameter. |