예제 #1
0
 public CallResponse makeCallSoap(Credential cred, string dest, UserProfile prof) {
     object[] results = this.Invoke("makeCallSoap", new object[] {
                 cred,
                 dest,
                 prof});
     return ((CallResponse)(results[0]));
 }
예제 #2
0
 /// <remarks/>
 public void endCallSoapAsync(Credential cred, UserProfile prof, object userState) {
     if ((this.endCallSoapOperationCompleted == null)) {
         this.endCallSoapOperationCompleted = new System.Threading.SendOrPostCallback(this.OnendCallSoapOperationCompleted);
     }
     this.InvokeAsync("endCallSoap", new object[] {
                 cred,
                 prof}, this.endCallSoapOperationCompleted, userState);
 }
예제 #3
0
 /// <remarks/>
 public void endCallSoapAsync(Credential cred, UserProfile prof) {
     this.endCallSoapAsync(cred, prof, null);
 }
예제 #4
0
 /// <remarks/>
 public System.IAsyncResult BeginendCallSoap(Credential cred, UserProfile prof, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("endCallSoap", new object[] {
                 cred,
                 prof}, callback, asyncState);
 }
예제 #5
0
 public CallResponse endCallSoap(Credential cred, UserProfile prof) {
     object[] results = this.Invoke("endCallSoap", new object[] {
                 cred,
                 prof});
     return ((CallResponse)(results[0]));
 }
예제 #6
0
 /// <remarks/>
 public void makeCallSoapAsync(Credential cred, string dest, UserProfile prof) {
     this.makeCallSoapAsync(cred, dest, prof, null);
 }