ActionControllerReactToActionIfNeeded Method |
Runs action for all contacts
if actionName is in selectedActionsMask
Namespace: Scanjour.Workflow4.ActivityLibrary.ControllerAssembly: Scanjour.Workflow4.ActivityLibrary_24.5.0.0 (in Scanjour.Workflow4.ActivityLibrary_24.5.0.0.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic void ReactToActionIfNeeded(
IEnumerable<Contact> contacts,
int selectedActionsMask,
string actionName,
Action<Contact> action
)
Public Sub ReactToActionIfNeeded (
contacts As IEnumerable(Of Contact),
selectedActionsMask As Integer,
actionName As String,
action As Action(Of Contact)
)
public:
void ReactToActionIfNeeded(
IEnumerable<Contact^>^ contacts,
int selectedActionsMask,
String^ actionName,
Action<Contact^>^ action
)
member ReactToActionIfNeeded :
contacts : IEnumerable<Contact> *
selectedActionsMask : int *
actionName : string *
action : Action<Contact> -> unit
Parameters
- contacts IEnumerableContact
- Contacts to perform action on
- selectedActionsMask Int32
- Bit mask of selected actions
- actionName String
- Name of action being reacted
- action ActionContact
- Action to be taken
See Also