コード例 #1
0
ファイル: ServiceI.cs プロジェクト: staherianYMCA/test
 public TestClassSimple DoSmthWithTestClassSimple(TestClassSimple TestClassSimple)
 {
     object[] results = this.Invoke("DoSmthWithTestClassSimple", new object[] {
         TestClassSimple
     });
     return((TestClassSimple)(results[0]));
 }
コード例 #2
0
ファイル: ServiceI.cs プロジェクト: staherianYMCA/test
 /// <remarks/>
 public void DoSmthWithTestClassSimpleAsync(TestClassSimple TestClassSimple, object userState)
 {
     if ((this.DoSmthWithTestClassSimpleOperationCompleted == null))
     {
         this.DoSmthWithTestClassSimpleOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDoSmthWithTestClassSimpleOperationCompleted);
     }
     this.InvokeAsync("DoSmthWithTestClassSimple", new object[] {
         TestClassSimple
     }, this.DoSmthWithTestClassSimpleOperationCompleted, userState);
 }
コード例 #3
0
ファイル: ServiceI.cs プロジェクト: staherianYMCA/test
 /// <remarks/>
 public void DoSmthWithTestClassSimpleAsync(TestClassSimple TestClassSimple)
 {
     this.DoSmthWithTestClassSimpleAsync(TestClassSimple, null);
 }
コード例 #4
0
ファイル: ServiceI.cs プロジェクト: staherianYMCA/test
 /// <remarks/>
 public System.IAsyncResult BeginDoSmthWithTestClassSimple(TestClassSimple TestClassSimple, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("DoSmthWithTestClassSimple", new object[] {
         TestClassSimple
     }, callback, asyncState));
 }