SPUserCodeWorkflowActivity.OutParams Property
Gets or sets a set of name/type pairs for out parameters.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
<ValidationOptionAttribute(ValidationOption.Required)> _
Public Property OutParams As String
Get
Set
'Usage
Dim instance As SPUserCodeWorkflowActivity
Dim value As String
value = instance.OutParams
instance.OutParams = value
[ValidationOptionAttribute(ValidationOption.Required)]
public string OutParams { get; set; }
Property Value
Type: System.String
The string of name/type pairs for out parameters.
Remarks
The accepted format of this property is name1;type1|name2;type2|.... This is set at design time and used to get return values after the function specified by the FunctionName property is called.
See Also
Reference
SPUserCodeWorkflowActivity Class