ActionParameterCollection.Create method (String, Boolean, Byte)
Create a new ActionParameter using the specified name, cache setting, and parameter index.
Namespace: Microsoft.SharePoint.BusinessData.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Function Create ( _
name As String, _
isCached As Boolean, _
index As Byte _
) As ActionParameter
'Usage
Dim instance As ActionParameterCollection
Dim name As String
Dim isCached As Boolean
Dim index As Byte
Dim returnValue As ActionParameter
returnValue = instance.Create(name, isCached, _
index)
public ActionParameter Create(
string name,
bool isCached,
byte index
)
Parameters
name
Type: System.StringThe name of the parameter to create.
isCached
Type: System.Booleantrue if the parameter is cached; otherwise, false.
index
Type: System.ByteThe index of the parameter.
Return value
Type: Microsoft.SharePoint.BusinessData.Administration.ActionParameter
The new ActionParameter.
See also
Reference
ActionParameterCollection class