コード例 #1
0
ファイル: Reference.cs プロジェクト: RasaCosmin/Tema4SD
 public System.Threading.Tasks.Task <Tema4MvcApp.LoginWebService.LoginResponse> LoginAsync(string username, string password)
 {
     Tema4MvcApp.LoginWebService.LoginRequest inValue = new Tema4MvcApp.LoginWebService.LoginRequest();
     inValue.Body          = new Tema4MvcApp.LoginWebService.LoginRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     return(((Tema4MvcApp.LoginWebService.LoginWS)(this)).LoginAsync(inValue));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: RasaCosmin/Tema4SD
 public string Login(string username, string password)
 {
     Tema4MvcApp.LoginWebService.LoginRequest inValue = new Tema4MvcApp.LoginWebService.LoginRequest();
     inValue.Body          = new Tema4MvcApp.LoginWebService.LoginRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     Tema4MvcApp.LoginWebService.LoginResponse retVal = ((Tema4MvcApp.LoginWebService.LoginWS)(this)).Login(inValue);
     return(retVal.Body.@return);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: RasaCosmin/Tema4SD
 System.Threading.Tasks.Task <Tema4MvcApp.LoginWebService.LoginResponse> Tema4MvcApp.LoginWebService.LoginWS.LoginAsync(Tema4MvcApp.LoginWebService.LoginRequest request)
 {
     return(base.Channel.LoginAsync(request));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: RasaCosmin/Tema4SD
 Tema4MvcApp.LoginWebService.LoginResponse Tema4MvcApp.LoginWebService.LoginWS.Login(Tema4MvcApp.LoginWebService.LoginRequest request)
 {
     return(base.Channel.Login(request));
 }