Beispiel #1
0
 /// <remarks/>
 public LogonResult EndLogon(System.IAsyncResult asyncResult, out LogonAction nextAction, out string cluster)
 {
     object[] results = this.EndInvoke(asyncResult);
     nextAction = ((LogonAction)(results[1]));
     cluster    = ((string)(results[2]));
     return((LogonResult)(results[0]));
 }
Beispiel #2
0
 public SMSLogonResult SmsLogon(string smsCode, out LogonAction nextAction)
 {
     object[] results = this.Invoke("SmsLogon", new object[] {
         smsCode
     });
     nextAction = ((LogonAction)(results[1]));
     return((SMSLogonResult)(results[0]));
 }
Beispiel #3
0
 public LogonResult Logon(string user, string password, string organisation, out LogonAction nextAction, out string cluster)
 {
     object[] results = this.Invoke("Logon", new object[] {
         user,
         password,
         organisation
     });
     nextAction = ((LogonAction)(results[1]));
     cluster    = ((string)(results[2]));
     return((LogonResult)(results[0]));
 }
Beispiel #4
0
 /// <remarks/>
 public SMSLogonResult EndSmsLogon(System.IAsyncResult asyncResult, out LogonAction nextAction)
 {
     object[] results = this.EndInvoke(asyncResult);
     nextAction = ((LogonAction)(results[1]));
     return((SMSLogonResult)(results[0]));
 }
Beispiel #5
0
 /// <remarks/>
 public ChangePasswordResult EndChangePassword(System.IAsyncResult asyncResult, out LogonAction nextAction)
 {
     object[] results = this.EndInvoke(asyncResult);
     nextAction = ((LogonAction)(results[1]));
     return((ChangePasswordResult)(results[0]));
 }
Beispiel #6
0
 public ChangePasswordResult ChangePassword(string currentPassword, string newPassword, out LogonAction nextAction)
 {
     object[] results = this.Invoke("ChangePassword", new object[] {
         currentPassword,
         newPassword
     });
     nextAction = ((LogonAction)(results[1]));
     return((ChangePasswordResult)(results[0]));
 }
 public ChangePasswordResult ChangePassword(string currentPassword, string newPassword, out LogonAction nextAction) {
     object[] results = this.Invoke("ChangePassword", new object[] {
                 currentPassword,
                 newPassword});
     nextAction = ((LogonAction)(results[1]));
     return ((ChangePasswordResult)(results[0]));
 }
 public SMSLogonResult SmsLogon(string smsCode, out LogonAction nextAction) {
     object[] results = this.Invoke("SmsLogon", new object[] {
                 smsCode});
     nextAction = ((LogonAction)(results[1]));
     return ((SMSLogonResult)(results[0]));
 }
 public LogonResult Logon(string user, string password, string organisation, out LogonAction nextAction, out string cluster) {
     object[] results = this.Invoke("Logon", new object[] {
                 user,
                 password,
                 organisation});
     nextAction = ((LogonAction)(results[1]));
     cluster = ((string)(results[2]));
     return ((LogonResult)(results[0]));
 }