Creates a new workflow interlock of the specified type.

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 T NewWorkflowInterlock<T>(
	string name
)
where T : BCWorkflowInterlock
Visual Basic
Public Function NewWorkflowInterlock(Of T As BCWorkflowInterlock) ( _
	name As String _
) As T
Visual C++
public:
generic<typename T>
where T : BCWorkflowInterlock
T NewWorkflowInterlock(
	String^ name
)

Parameters

name
Type: System..::..String
The name of the interlock to create.

Type Parameters

T
The type of the interlock to create.

Return Value

The created workflow interlock.

See Also