Helper.MultiUserIDSemicolon Method
Gets a set of IDs of the users from the specified formatted string.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Shared Function MultiUserIDSemicolon ( _
context As WorkflowContext, _
val As Object _
) As String
'Usage
Dim context As WorkflowContext
Dim val As Object
Dim returnValue As String
returnValue = Helper.MultiUserIDSemicolon(context, _
val)
public static string MultiUserIDSemicolon(
WorkflowContext context,
Object val
)
Parameters
context
Type: Microsoft.SharePoint.WorkflowActions.WorkflowContextA workflow context that contains properties that are associated with the active workflow instance.
val
Type: System.ObjectThe formatted string.
Return Value
Type: System.String
The IDs of the users separated by semicolons.
Remarks
If the user does not exist, the resulting ID of the user is an empty string.
This method throws a CoercionException exception if val is null or cannot be cast to a String object.