Parameter.Direction Property

Gets or sets the direction in which the parameter is passed between the Business Data Catalog and the system

Namespace:  Microsoft.Office.Server.ApplicationRegistry.Administration
Assembly:  Microsoft.SharePoint.Portal (in Microsoft.SharePoint.Portal.dll)

Syntax

'Declaration
Public Property Direction As DirectionType
    Get
    Set
'Usage
Dim instance As Parameter
Dim value As DirectionType

value = instance.Direction

instance.Direction = value
public DirectionType Direction { get; set; }

Property Value

Type: Microsoft.Office.Server.ApplicationRegistry.MetadataModel.DirectionType
One of In, Out, InOut, or Return.

Remarks

In: Business Data Catalog initializes the parameter and passes it to the system.

Out: System initializes the parameter and passes it to the Business Data Catalog (corresponds to Visual C# out keyword).

InOut: Business Data Catalog initializes the parameter and passes it to the system, which may modify it before returning it to the Business Data Catalog. (corresponds to Visual C# ref keyword).

Return: The system initializes the parameter and passes it to the Business Data Catalog as the return value of a method.

See Also

Reference

Parameter Class

Parameter Members

Microsoft.Office.Server.ApplicationRegistry.Administration Namespace