Beispiel #1
0
 private object[] OnEndGet(System.IAsyncResult result)
 {
     test00.testservice.GenericObject retVal = this.EndGet(result);
     return(new object[] {
         retVal
     });
 }
Beispiel #2
0
        private System.IAsyncResult OnBeginRun(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            string actor  = ((string)(inValues[0]));
            string action = ((string)(inValues[1]));

            test00.testservice.GenericObject parameters = ((test00.testservice.GenericObject)(inValues[2]));
            return(this.BeginRun(actor, action, parameters, callback, asyncState));
        }
Beispiel #3
0
        private System.IAsyncResult OnBeginSet(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            string actor     = ((string)(inValues[0]));
            string attribute = ((string)(inValues[1]));

            test00.testservice.GenericObject value = ((test00.testservice.GenericObject)(inValues[2]));
            return(this.BeginSet(actor, attribute, value, callback, asyncState));
        }
Beispiel #4
0
 public void RunAsync(string actor, string action, test00.testservice.GenericObject parameters, object userState)
 {
     if ((this.onBeginRunDelegate == null))
     {
         this.onBeginRunDelegate = new BeginOperationDelegate(this.OnBeginRun);
     }
     if ((this.onEndRunDelegate == null))
     {
         this.onEndRunDelegate = new EndOperationDelegate(this.OnEndRun);
     }
     if ((this.onRunCompletedDelegate == null))
     {
         this.onRunCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnRunCompleted);
     }
     base.InvokeAsync(this.onBeginRunDelegate, new object[] {
         actor,
         action,
         parameters
     }, this.onEndRunDelegate, this.onRunCompletedDelegate, userState);
 }
Beispiel #5
0
 public void SetAsync(string actor, string attribute, test00.testservice.GenericObject value, object userState)
 {
     if ((this.onBeginSetDelegate == null))
     {
         this.onBeginSetDelegate = new BeginOperationDelegate(this.OnBeginSet);
     }
     if ((this.onEndSetDelegate == null))
     {
         this.onEndSetDelegate = new EndOperationDelegate(this.OnEndSet);
     }
     if ((this.onSetCompletedDelegate == null))
     {
         this.onSetCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetCompleted);
     }
     base.InvokeAsync(this.onBeginSetDelegate, new object[] {
         actor,
         attribute,
         value
     }, this.onEndSetDelegate, this.onSetCompletedDelegate, userState);
 }
Beispiel #6
0
 public void RunAsync(string actor, string action, test00.testservice.GenericObject parameters)
 {
     this.RunAsync(actor, action, parameters, null);
 }
Beispiel #7
0
 public System.IAsyncResult BeginRun(string actor, string action, test00.testservice.GenericObject parameters, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginRun(actor, action, parameters, callback, asyncState));
 }
Beispiel #8
0
 public void Run(string actor, string action, test00.testservice.GenericObject parameters)
 {
     base.Channel.Run(actor, action, parameters);
 }
Beispiel #9
0
 public void SetAsync(string actor, string attribute, test00.testservice.GenericObject value)
 {
     this.SetAsync(actor, attribute, value, null);
 }
Beispiel #10
0
 public System.IAsyncResult BeginSet(string actor, string attribute, test00.testservice.GenericObject value, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginSet(actor, attribute, value, callback, asyncState));
 }
Beispiel #11
0
 public void Set(string actor, string attribute, test00.testservice.GenericObject value)
 {
     base.Channel.Set(actor, attribute, value);
 }