Creates a new workflow transition with the specified name.

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 BCWorkflowTransition NewWorkflowTransition(
	string name,
	BCWorkflowState sourceState,
	BCWorkflowState targetState
)
Visual Basic
Public Function NewWorkflowTransition ( _
	name As String, _
	sourceState As BCWorkflowState, _
	targetState As BCWorkflowState _
) As BCWorkflowTransition
Visual C++
public:
BCWorkflowTransition^ NewWorkflowTransition(
	String^ name, 
	BCWorkflowState^ sourceState, 
	BCWorkflowState^ targetState
)

Parameters

name
Type: System..::..String
The name of the workflow transition to create.
sourceState
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCWorkflowState
The source state of the transition to create.
targetState
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCWorkflowState
The target state of the transition to create.

Return Value

The created workflow transition.

See Also