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#
[ObsoleteAttribute("This method might be removed from future versions. Use the overloaded "NewWorkflowInterlock" method.")]
public BCWorkflowInterlock NewWorkflowInterlock(
	WorkflowInterlockKind type,
	string name
)
Visual Basic
<ObsoleteAttribute("This method might be removed from future versions. Use the overloaded "NewWorkflowInterlock" method.")> _
Public Function NewWorkflowInterlock ( _
	type As WorkflowInterlockKind, _
	name As String _
) As BCWorkflowInterlock
Visual C++
[ObsoleteAttribute(L"This method might be removed from future versions. Use the overloaded "NewWorkflowInterlock" method.")]
public:
BCWorkflowInterlock^ NewWorkflowInterlock(
	WorkflowInterlockKind type, 
	String^ name
)

Parameters

type
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..WorkflowInterlockKind
The type of the interlock to create.
name
Type: System..::..String
The name of the interlock to create.

Return Value

The created workflow interlock.

Remarks

This method might be removed from future versions. Use the NewWorkflowInterlock(Type, String).

See Also