Enum ParameterDirectionKind
Parameter direction kind is an enumeration type that defines literals used to specify direction of parameters.
[TypeConverter(typeof(ParameterDirectionKindConverter))]
[ModelRepresentationClass("http://www.omg.org/spec/MOF/20131001/cmof.xmi#//ParameterDirectionKind")]
public enum ParameterDirectionKind
Fields
In = 0
Indicates that parameter values are passed into the behavioral element by the caller.
Inout = 1
Indicates that parameter values are passed into a behavioral element by the caller and then back out to the caller from the behavioral element.
Out = 2
Indicates that parameter values are passed from a behavioral element out to the caller.
Return = 3
Indicates that parameter values are passed as return values from a behavioral element back to the caller.