Пример #1
0
 public System.Threading.Tasks.Task <Calculator.CalcServ.mulResponse> mulAsync(double a, double b)
 {
     Calculator.CalcServ.mulRequest inValue = new Calculator.CalcServ.mulRequest();
     inValue.a = a;
     inValue.b = b;
     return(((Calculator.CalcServ.calcPortType)(this)).mulAsync(inValue));
 }
Пример #2
0
 public double mul(double a, double b)
 {
     Calculator.CalcServ.mulRequest inValue = new Calculator.CalcServ.mulRequest();
     inValue.a = a;
     inValue.b = b;
     Calculator.CalcServ.mulResponse retVal = ((Calculator.CalcServ.calcPortType)(this)).mul(inValue);
     return(retVal.result);
 }
Пример #3
0
 System.Threading.Tasks.Task <Calculator.CalcServ.mulResponse> Calculator.CalcServ.calcPortType.mulAsync(Calculator.CalcServ.mulRequest request)
 {
     return(base.Channel.mulAsync(request));
 }
Пример #4
0
 Calculator.CalcServ.mulResponse Calculator.CalcServ.calcPortType.mul(Calculator.CalcServ.mulRequest request)
 {
     return(base.Channel.mul(request));
 }