Пример #1
0
 public System.IAsyncResult BeginLogin(WssSVLib.Authentication.LoginRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("Login", _args, callback, asyncState);
     return(_result);
 }
Пример #2
0
 private System.IAsyncResult BeginLogin(string username, string password, System.AsyncCallback callback, object asyncState)
 {
     WssSVLib.Authentication.LoginRequest inValue = new WssSVLib.Authentication.LoginRequest();
     inValue.Body          = new WssSVLib.Authentication.LoginRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     return(((WssSVLib.Authentication.AuthenticationSoap)(this)).BeginLogin(inValue, callback, asyncState));
 }
Пример #3
0
 System.IAsyncResult WssSVLib.Authentication.AuthenticationSoap.BeginLogin(WssSVLib.Authentication.LoginRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginLogin(request, callback, asyncState));
 }