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 BCWorkflowInterlock NewWorkflowInterlock(
	Type type,
	string name
)
Visual Basic
Public Function NewWorkflowInterlock ( _
	type As Type, _
	name As String _
) As BCWorkflowInterlock
Visual C++
public:
BCWorkflowInterlock^ NewWorkflowInterlock(
	Type^ type, 
	String^ name
)

Parameters

type
Type: System..::..Type
The type of the interlock to create. Can be either BCDocumentWorkflowInterlock or BCProjectWorkflowInterlock.
name
Type: System..::..String
The name of the interlock to create.

Return Value

The created workflow interlock.

See Also