/// <remarks/> public void executeActionsAsync(Predicate predicate, Action[] actions) { this.executeActionsAsync(predicate, actions, null); }
/// <remarks/> public void executeActionsAsync(Predicate predicate, Action[] actions, object userState) { if ((this.executeActionsOperationCompleted == null)) { this.executeActionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnexecuteActionsOperationCompleted); } this.InvokeAsync("executeActions", new object[] { predicate, actions}, this.executeActionsOperationCompleted, userState); }
public ActionExecutionResult[] executeActions(Predicate predicate, [System.Xml.Serialization.XmlElementAttribute("actions")] Action[] actions) { object[] results = this.Invoke("executeActions", new object[] { predicate, actions}); return ((ActionExecutionResult[])(results[0])); }