Skip to content

Pause

Pauses a milestone if found and returns the milestone instance.

1
myMilestones.Pause(name: string):Milestone

Parameters

string name
    The name of the milestone. Required.

Returns

The Milestone instance if found; otherwise, null.

Remarks

If multiple milestones share the same name, only the milestone that is currently in progress will be paused and returned.

Example

1
var sla1 = $Case.Milestones.Pause('SLA 1');

See Also