ParameterCollection.Create method
Creates a new parameter for a method.
Namespace: Microsoft.SharePoint.BusinessData.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Function Create ( _
name As String, _
isCached As Boolean, _
direction As DirectionType _
) As Parameter
'Usage
Dim instance As ParameterCollection
Dim name As String
Dim isCached As Boolean
Dim direction As DirectionType
Dim returnValue As Parameter
returnValue = instance.Create(name, isCached, _
direction)
public Parameter Create(
string name,
bool isCached,
DirectionType direction
)
Parameters
name
Type: System.StringThe name of the parameter to create.
isCached
Type: System.Booleantrue if the parameter is to be cached; otherwise, false.
direction
Type: Microsoft.BusinessData.MetadataModel.DirectionTypeThe direction type of the parameter.
Return value
Type: Microsoft.SharePoint.BusinessData.Administration.Parameter
The new parameter.