Example #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]));
 }
Example #2
0
 /// <remarks/>
 public void getProfileSoapAsync(Credential cred, string userid) {
     this.getProfileSoapAsync(cred, userid, null);
 }
Example #3
0
 /// <remarks/>
 public void getProfileSoapAsync(Credential cred, string userid, object userState) {
     if ((this.getProfileSoapOperationCompleted == null)) {
         this.getProfileSoapOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetProfileSoapOperationCompleted);
     }
     this.InvokeAsync("getProfileSoap", new object[] {
                 cred,
                 userid}, this.getProfileSoapOperationCompleted, userState);
 }
Example #4
0
 public GetConfigResponse getProfileSoap(Credential cred, string userid) {
     object[] results = this.Invoke("getProfileSoap", new object[] {
                 cred,
                 userid});
     return ((GetConfigResponse)(results[0]));
 }
Example #5
0
 /// <remarks/>
 public System.IAsyncResult BegingetProfileSoap(Credential cred, string userid, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("getProfileSoap", new object[] {
                 cred,
                 userid}, callback, asyncState);
 }
Example #6
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);
 }
Example #7
0
 /// <remarks/>
 public void endCallSoapAsync(Credential cred, UserProfile prof) {
     this.endCallSoapAsync(cred, prof, null);
 }
Example #8
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);
 }
Example #9
0
 public CallResponse endCallSoap(Credential cred, UserProfile prof) {
     object[] results = this.Invoke("endCallSoap", new object[] {
                 cred,
                 prof});
     return ((CallResponse)(results[0]));
 }
Example #10
0
 /// <remarks/>
 public void makeCallSoapAsync(Credential cred, string dest, UserProfile prof) {
     this.makeCallSoapAsync(cred, dest, prof, null);
 }