Example #1
0
 public System.Threading.Tasks.Task <PointsStudentView.PointsService.LoginResponse> LoginAsync(string userId, string emailAddress)
 {
     PointsStudentView.PointsService.LoginRequest inValue = new PointsStudentView.PointsService.LoginRequest();
     inValue.Body              = new PointsStudentView.PointsService.LoginRequestBody();
     inValue.Body.userId       = userId;
     inValue.Body.emailAddress = emailAddress;
     return(((PointsStudentView.PointsService.PointsServiceSoap)(this)).LoginAsync(inValue));
 }
Example #2
0
 public bool Login(string userId, string emailAddress)
 {
     PointsStudentView.PointsService.LoginRequest inValue = new PointsStudentView.PointsService.LoginRequest();
     inValue.Body              = new PointsStudentView.PointsService.LoginRequestBody();
     inValue.Body.userId       = userId;
     inValue.Body.emailAddress = emailAddress;
     PointsStudentView.PointsService.LoginResponse retVal = ((PointsStudentView.PointsService.PointsServiceSoap)(this)).Login(inValue);
     return(retVal.Body.LoginResult);
 }
Example #3
0
 System.Threading.Tasks.Task <PointsStudentView.PointsService.LoginResponse> PointsStudentView.PointsService.PointsServiceSoap.LoginAsync(PointsStudentView.PointsService.LoginRequest request)
 {
     return(base.Channel.LoginAsync(request));
 }
Example #4
0
 PointsStudentView.PointsService.LoginResponse PointsStudentView.PointsService.PointsServiceSoap.Login(PointsStudentView.PointsService.LoginRequest request)
 {
     return(base.Channel.Login(request));
 }