コード例 #1
0
ファイル: Reference.cs プロジェクト: ahmed-ismaail/archi
 public System.Threading.Tasks.Task <WindowsFormsApp1.ServiceReference1.LoginFuncResponse> LoginFuncAsync(string email, string password)
 {
     WindowsFormsApp1.ServiceReference1.LoginFuncRequest inValue = new WindowsFormsApp1.ServiceReference1.LoginFuncRequest();
     inValue.Body          = new WindowsFormsApp1.ServiceReference1.LoginFuncRequestBody();
     inValue.Body.email    = email;
     inValue.Body.password = password;
     return(((WindowsFormsApp1.ServiceReference1.WebService1Soap)(this)).LoginFuncAsync(inValue));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ahmed-ismaail/archi
 public bool LoginFunc(string email, string password)
 {
     WindowsFormsApp1.ServiceReference1.LoginFuncRequest inValue = new WindowsFormsApp1.ServiceReference1.LoginFuncRequest();
     inValue.Body          = new WindowsFormsApp1.ServiceReference1.LoginFuncRequestBody();
     inValue.Body.email    = email;
     inValue.Body.password = password;
     WindowsFormsApp1.ServiceReference1.LoginFuncResponse retVal = ((WindowsFormsApp1.ServiceReference1.WebService1Soap)(this)).LoginFunc(inValue);
     return(retVal.Body.LoginFuncResult);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: ahmed-ismaail/archi
 System.Threading.Tasks.Task <WindowsFormsApp1.ServiceReference1.LoginFuncResponse> WindowsFormsApp1.ServiceReference1.WebService1Soap.LoginFuncAsync(WindowsFormsApp1.ServiceReference1.LoginFuncRequest request)
 {
     return(base.Channel.LoginFuncAsync(request));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: ahmed-ismaail/archi
 WindowsFormsApp1.ServiceReference1.LoginFuncResponse WindowsFormsApp1.ServiceReference1.WebService1Soap.LoginFunc(WindowsFormsApp1.ServiceReference1.LoginFuncRequest request)
 {
     return(base.Channel.LoginFunc(request));
 }