Table of Contents

Enum ParameterDirectionKind

Namespace
NMF.Interop.Legacy.Cmof
Assembly
NMF.UMLInterop.dll

ParameterDirectionKind is an enumeration of the following literal values:

  • in Indicates that parameter values are passed into the behavioral element by the caller.

  • inout 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 Indicates that parameter values are passed from a behavioral element out to the caller.

  • return Indicates that parameter values are passed as return values from a behavioral element back to the caller.

[TypeConverter(typeof(ParameterDirectionKindConverter))]
[ModelRepresentationClass("http://schema.omg.org/spec/MOF/2.0/cmof.xml#//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.