コード例 #1
0
 public System.Threading.Tasks.Task <Calculator.CalcServ.divResponse> divAsync(double a, double b)
 {
     Calculator.CalcServ.divRequest inValue = new Calculator.CalcServ.divRequest();
     inValue.a = a;
     inValue.b = b;
     return(((Calculator.CalcServ.calcPortType)(this)).divAsync(inValue));
 }
コード例 #2
0
 public double div(double a, double b)
 {
     Calculator.CalcServ.divRequest inValue = new Calculator.CalcServ.divRequest();
     inValue.a = a;
     inValue.b = b;
     Calculator.CalcServ.divResponse retVal = ((Calculator.CalcServ.calcPortType)(this)).div(inValue);
     return(retVal.result);
 }
コード例 #3
0
 System.Threading.Tasks.Task <Calculator.CalcServ.divResponse> Calculator.CalcServ.calcPortType.divAsync(Calculator.CalcServ.divRequest request)
 {
     return(base.Channel.divAsync(request));
 }
コード例 #4
0
 Calculator.CalcServ.divResponse Calculator.CalcServ.calcPortType.div(Calculator.CalcServ.divRequest request)
 {
     return(base.Channel.div(request));
 }