示例#1
0
 public System.Threading.Tasks.Task <SystemIntegration.Web.wsDemo.InsertSqlResponse> InsertSqlAsync(string sql)
 {
     SystemIntegration.Web.wsDemo.InsertSqlRequest inValue = new SystemIntegration.Web.wsDemo.InsertSqlRequest();
     inValue.Body     = new SystemIntegration.Web.wsDemo.InsertSqlRequestBody();
     inValue.Body.sql = sql;
     return(((SystemIntegration.Web.wsDemo.WsInsertStringSoap)(this)).InsertSqlAsync(inValue));
 }
示例#2
0
 public string InsertSql(string sql)
 {
     SystemIntegration.Web.wsDemo.InsertSqlRequest inValue = new SystemIntegration.Web.wsDemo.InsertSqlRequest();
     inValue.Body     = new SystemIntegration.Web.wsDemo.InsertSqlRequestBody();
     inValue.Body.sql = sql;
     SystemIntegration.Web.wsDemo.InsertSqlResponse retVal = ((SystemIntegration.Web.wsDemo.WsInsertStringSoap)(this)).InsertSql(inValue);
     return(retVal.Body.InsertSqlResult);
 }
示例#3
0
 System.Threading.Tasks.Task <SystemIntegration.Web.wsDemo.InsertSqlResponse> SystemIntegration.Web.wsDemo.WsInsertStringSoap.InsertSqlAsync(SystemIntegration.Web.wsDemo.InsertSqlRequest request)
 {
     return(base.Channel.InsertSqlAsync(request));
 }
示例#4
0
 SystemIntegration.Web.wsDemo.InsertSqlResponse SystemIntegration.Web.wsDemo.WsInsertStringSoap.InsertSql(SystemIntegration.Web.wsDemo.InsertSqlRequest request)
 {
     return(base.Channel.InsertSql(request));
 }