public CallResponse makeCallSoap(Credential cred, string dest, UserProfile prof) { object[] results = this.Invoke("makeCallSoap", new object[] { cred, dest, prof}); return ((CallResponse)(results[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); }
/// <remarks/> public void endCallSoapAsync(Credential cred, UserProfile prof) { this.endCallSoapAsync(cred, prof, null); }
/// <remarks/> public System.IAsyncResult BeginendCallSoap(Credential cred, UserProfile prof, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("endCallSoap", new object[] { cred, prof}, callback, asyncState); }
public CallResponse endCallSoap(Credential cred, UserProfile prof) { object[] results = this.Invoke("endCallSoap", new object[] { cred, prof}); return ((CallResponse)(results[0])); }
/// <remarks/> public void makeCallSoapAsync(Credential cred, string dest, UserProfile prof) { this.makeCallSoapAsync(cred, dest, prof, null); }