コード例 #1
0
 /// <remarks/>
 public void executeActionsAsync(Predicate predicate, Action[] actions) {
     this.executeActionsAsync(predicate, actions, null);
 }
コード例 #2
0
 /// <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);
 }
コード例 #3
0
 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]));
 }