예제 #1
0
 public System.IAsyncResult BeginAutenticacion(CYLTRACK_PHONE.UsuarioService.UsuarioBE usuario, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = usuario;
     System.IAsyncResult _result = base.BeginInvoke("Autenticacion", _args, callback, asyncState);
     return(_result);
 }
예제 #2
0
 public void AutenticacionAsync(CYLTRACK_PHONE.UsuarioService.UsuarioBE usuario, object userState)
 {
     if ((this.onBeginAutenticacionDelegate == null))
     {
         this.onBeginAutenticacionDelegate = new BeginOperationDelegate(this.OnBeginAutenticacion);
     }
     if ((this.onEndAutenticacionDelegate == null))
     {
         this.onEndAutenticacionDelegate = new EndOperationDelegate(this.OnEndAutenticacion);
     }
     if ((this.onAutenticacionCompletedDelegate == null))
     {
         this.onAutenticacionCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAutenticacionCompleted);
     }
     base.InvokeAsync(this.onBeginAutenticacionDelegate, new object[] {
         usuario
     }, this.onEndAutenticacionDelegate, this.onAutenticacionCompletedDelegate, userState);
 }
예제 #3
0
 public void AutenticacionAsync(CYLTRACK_PHONE.UsuarioService.UsuarioBE usuario)
 {
     this.AutenticacionAsync(usuario, null);
 }
예제 #4
0
 private System.IAsyncResult OnBeginAutenticacion(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     CYLTRACK_PHONE.UsuarioService.UsuarioBE usuario = ((CYLTRACK_PHONE.UsuarioService.UsuarioBE)(inValues[0]));
     return(((CYLTRACK_PHONE.UsuarioService.IUsuarioService)(this)).BeginAutenticacion(usuario, callback, asyncState));
 }
예제 #5
0
 System.IAsyncResult CYLTRACK_PHONE.UsuarioService.IUsuarioService.BeginAutenticacion(CYLTRACK_PHONE.UsuarioService.UsuarioBE usuario, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginAutenticacion(usuario, callback, asyncState));
 }
예제 #6
0
 public void RegistrarUsuarioAsync(CYLTRACK_PHONE.UsuarioService.UsuarioBE usuario)
 {
     this.RegistrarUsuarioAsync(usuario, null);
 }