Beispiel #1
0
 public LogonResponse(DemoConnector.TwinfieldSessionService.Header Header, DemoConnector.TwinfieldSessionService.LogonResult LogonResult, DemoConnector.TwinfieldSessionService.LogonAction nextAction, string cluster)
 {
     this.Header      = Header;
     this.LogonResult = LogonResult;
     this.nextAction  = nextAction;
     this.cluster     = cluster;
 }
Beispiel #2
0
 public DemoConnector.TwinfieldSessionService.ChangePasswordResult ChangePassword(DemoConnector.TwinfieldSessionService.Header Header, string currentPassword, string newPassword, out DemoConnector.TwinfieldSessionService.LogonAction nextAction)
 {
     DemoConnector.TwinfieldSessionService.ChangePasswordRequest inValue = new DemoConnector.TwinfieldSessionService.ChangePasswordRequest();
     inValue.Header          = Header;
     inValue.currentPassword = currentPassword;
     inValue.newPassword     = newPassword;
     DemoConnector.TwinfieldSessionService.ChangePasswordResponse retVal = ((DemoConnector.TwinfieldSessionService.SessionSoap)(this)).ChangePassword(inValue);
     nextAction = retVal.nextAction;
     return(retVal.ChangePasswordResult);
 }
Beispiel #3
0
 public DemoConnector.TwinfieldSessionService.SMSLogonResult SmsLogon(DemoConnector.TwinfieldSessionService.Header Header, string smsCode, out DemoConnector.TwinfieldSessionService.LogonAction nextAction)
 {
     DemoConnector.TwinfieldSessionService.SmsLogonRequest inValue = new DemoConnector.TwinfieldSessionService.SmsLogonRequest();
     inValue.Header  = Header;
     inValue.smsCode = smsCode;
     DemoConnector.TwinfieldSessionService.SmsLogonResponse retVal = ((DemoConnector.TwinfieldSessionService.SessionSoap)(this)).SmsLogon(inValue);
     nextAction = retVal.nextAction;
     return(retVal.SmsLogonResult);
 }
Beispiel #4
0
 public DemoConnector.TwinfieldSessionService.Header Logon(string user, string password, string organisation, out DemoConnector.TwinfieldSessionService.LogonResult LogonResult, out DemoConnector.TwinfieldSessionService.LogonAction nextAction, out string cluster)
 {
     DemoConnector.TwinfieldSessionService.LogonRequest inValue = new DemoConnector.TwinfieldSessionService.LogonRequest();
     inValue.user         = user;
     inValue.password     = password;
     inValue.organisation = organisation;
     DemoConnector.TwinfieldSessionService.LogonResponse retVal = ((DemoConnector.TwinfieldSessionService.SessionSoap)(this)).Logon(inValue);
     LogonResult = retVal.LogonResult;
     nextAction  = retVal.nextAction;
     cluster     = retVal.cluster;
     return(retVal.Header);
 }
Beispiel #5
0
 public ChangePasswordResponse(DemoConnector.TwinfieldSessionService.ChangePasswordResult ChangePasswordResult, DemoConnector.TwinfieldSessionService.LogonAction nextAction)
 {
     this.ChangePasswordResult = ChangePasswordResult;
     this.nextAction           = nextAction;
 }
Beispiel #6
0
 public SmsLogonResponse(DemoConnector.TwinfieldSessionService.SMSLogonResult SmsLogonResult, DemoConnector.TwinfieldSessionService.LogonAction nextAction)
 {
     this.SmsLogonResult = SmsLogonResult;
     this.nextAction     = nextAction;
 }