Ejemplo n.º 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]));
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void getProfileSoapAsync(Credential cred, string userid) {
     this.getProfileSoapAsync(cred, userid, null);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 4
0
 public GetConfigResponse getProfileSoap(Credential cred, string userid) {
     object[] results = this.Invoke("getProfileSoap", new object[] {
                 cred,
                 userid});
     return ((GetConfigResponse)(results[0]));
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 7
0
 /// <remarks/>
 public void endCallSoapAsync(Credential cred, UserProfile prof) {
     this.endCallSoapAsync(cred, prof, null);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 9
0
 public CallResponse endCallSoap(Credential cred, UserProfile prof) {
     object[] results = this.Invoke("endCallSoap", new object[] {
                 cred,
                 prof});
     return ((CallResponse)(results[0]));
 }
Ejemplo n.º 10
0
 /// <remarks/>
 public void makeCallSoapAsync(Credential cred, string dest, UserProfile prof) {
     this.makeCallSoapAsync(cred, dest, prof, null);
 }