Ejemplo n.º 1
0
 public LoginRequest(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string account, string password, string appName)
 {
     this.AuthHeader = AuthHeader;
     this.account    = account;
     this.password   = password;
     this.appName    = appName;
 }
Ejemplo n.º 2
0
 public RegisterRequest(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string mobile, string password1, string password2, string appName)
 {
     this.AuthHeader = AuthHeader;
     this.mobile     = mobile;
     this.password1  = password1;
     this.password2  = password2;
     this.appName    = appName;
 }
Ejemplo n.º 3
0
 public M_Gwt.ServiceMobile.PackageOfString Login(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string account, string password, string appName)
 {
     M_Gwt.ServiceMobile.LoginRequest inValue = new M_Gwt.ServiceMobile.LoginRequest();
     inValue.AuthHeader = AuthHeader;
     inValue.account    = account;
     inValue.password   = password;
     inValue.appName    = appName;
     M_Gwt.ServiceMobile.LoginResponse retVal = ((M_Gwt.ServiceMobile.ServiceMobileSoap)(this)).Login(inValue);
     return(retVal.LoginResult);
 }
Ejemplo n.º 4
0
 public PushRequest(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string receiverId, string senderId, string appName, string title, string message, string param)
 {
     this.AuthHeader = AuthHeader;
     this.receiverId = receiverId;
     this.senderId   = senderId;
     this.appName    = appName;
     this.title      = title;
     this.message    = message;
     this.param      = param;
 }
Ejemplo n.º 5
0
 public M_Gwt.ServiceMobile.PackageOfString Register(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string mobile, string password1, string password2, string appName)
 {
     M_Gwt.ServiceMobile.RegisterRequest inValue = new M_Gwt.ServiceMobile.RegisterRequest();
     inValue.AuthHeader = AuthHeader;
     inValue.mobile     = mobile;
     inValue.password1  = password1;
     inValue.password2  = password2;
     inValue.appName    = appName;
     M_Gwt.ServiceMobile.RegisterResponse retVal = ((M_Gwt.ServiceMobile.ServiceMobileSoap)(this)).Register(inValue);
     return(retVal.RegisterResult);
 }
Ejemplo n.º 6
0
 public M_Gwt.ServiceMobile.PackageOfBoolean Push(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string receiverId, string senderId, string appName, string title, string message, string param)
 {
     M_Gwt.ServiceMobile.PushRequest inValue = new M_Gwt.ServiceMobile.PushRequest();
     inValue.AuthHeader = AuthHeader;
     inValue.receiverId = receiverId;
     inValue.senderId   = senderId;
     inValue.appName    = appName;
     inValue.title      = title;
     inValue.message    = message;
     inValue.param      = param;
     M_Gwt.ServiceMobile.PushResponse retVal = ((M_Gwt.ServiceMobile.ServiceMobileSoap)(this)).Push(inValue);
     return(retVal.PushResult);
 }
Ejemplo n.º 7
0
 public System.Threading.Tasks.Task <M_Gwt.ServiceMobile.RegisterResponse> RegisterAsync(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string mobile, string password1, string password2, string appName)
 {
     M_Gwt.ServiceMobile.RegisterRequest inValue = new M_Gwt.ServiceMobile.RegisterRequest();
     inValue.AuthHeader = AuthHeader;
     inValue.mobile     = mobile;
     inValue.password1  = password1;
     inValue.password2  = password2;
     inValue.appName    = appName;
     return(((M_Gwt.ServiceMobile.ServiceMobileSoap)(this)).RegisterAsync(inValue));
 }
Ejemplo n.º 8
0
 public System.Threading.Tasks.Task <M_Gwt.ServiceMobile.LoginResponse> LoginAsync(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string account, string password, string appName)
 {
     M_Gwt.ServiceMobile.LoginRequest inValue = new M_Gwt.ServiceMobile.LoginRequest();
     inValue.AuthHeader = AuthHeader;
     inValue.account    = account;
     inValue.password   = password;
     inValue.appName    = appName;
     return(((M_Gwt.ServiceMobile.ServiceMobileSoap)(this)).LoginAsync(inValue));
 }
Ejemplo n.º 9
0
 public System.Threading.Tasks.Task <M_Gwt.ServiceMobile.PushResponse> PushAsync(M_Gwt.ServiceMobile.AuthHeader AuthHeader, string receiverId, string senderId, string appName, string title, string message, string param)
 {
     M_Gwt.ServiceMobile.PushRequest inValue = new M_Gwt.ServiceMobile.PushRequest();
     inValue.AuthHeader = AuthHeader;
     inValue.receiverId = receiverId;
     inValue.senderId   = senderId;
     inValue.appName    = appName;
     inValue.title      = title;
     inValue.message    = message;
     inValue.param      = param;
     return(((M_Gwt.ServiceMobile.ServiceMobileSoap)(this)).PushAsync(inValue));
 }