Helper.MultiEmailAddressSemicolon Method
Gets a set of email addresses 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 MultiEmailAddressSemicolon ( _
context As WorkflowContext, _
val As Object _
) As String
'Usage
Dim context As WorkflowContext
Dim val As Object
Dim returnValue As String
returnValue = Helper.MultiEmailAddressSemicolon(context, _
val)
public static string MultiEmailAddressSemicolon(
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 email addresses of the users separated by semicolons.
Remarks
If the user does not exist, the resulting email address is an empty string.
This method throws a CoercionException exception if val is null , cannot be cast to a String object, or is not in the correct format.