Executes a workflow transition.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public void ExecuteTransition(
	BCWorkflowTransition transition,
	string comment,
	IEnumerable<string> todoUserNames,
	IEnumerable<string> managerUserNames
)
Visual Basic
Public Sub ExecuteTransition ( _
	transition As BCWorkflowTransition, _
	comment As String, _
	todoUserNames As IEnumerable(Of String), _
	managerUserNames As IEnumerable(Of String) _
)
Visual C++
public:
void ExecuteTransition(
	BCWorkflowTransition^ transition, 
	String^ comment, 
	IEnumerable<String^>^ todoUserNames, 
	IEnumerable<String^>^ managerUserNames
)

Parameters

transition
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCWorkflowTransition
The workflow transition to execute.
comment
Type: System..::..String
The text message of a comment.
todoUserNames
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of user names of to-do persons.
managerUserNames
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of user names of managers.

See Also