|   | DedicatedSynchronizedOperation(Action, ActionException, Boolean) Constructor | 
        
        
        
        Namespace: GSF.ThreadingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic DedicatedSynchronizedOperation(
	Action action,
	Action<Exception> exceptionAction,
	bool isBackground
)
Public Sub New ( 
	action As Action,
	exceptionAction As Action(Of Exception),
	isBackground As Boolean
)
public:
DedicatedSynchronizedOperation(
	Action^ action, 
	Action<Exception^>^ exceptionAction, 
	bool isBackground
)
new : 
        action : Action * 
        exceptionAction : Action<Exception> * 
        isBackground : bool -> DedicatedSynchronizedOperationGSF.Threading.DedicatedSynchronizedOperation = function(action, exceptionAction, isBackground);
Parameters
- action  Action
- The action to be performed during this operation.
- exceptionAction  ActionException
- The action to be performed if an exception is thrown from the action.
- isBackground  Boolean
- Specifies if this operation will be a background thread.
 See Also
See Also