BackgroundOperationManagerCreateBackgroundOperation(String, Action) Method

Creates a new background operation. The background operations runs the given method at given intervals. Must be separately started.

Definition

Namespace: MFiles.VAF.Common
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
public BackgroundOperation CreateBackgroundOperation(
	string name,
	Action method
)

Parameters

name  String
The name of the operation.
method  Action
The method to invoke at given intervals.

Return Value

BackgroundOperation
A new background operation, that is not yet started.

See Also