Ejemplo n.º 1
0
 public bool Register(string nick, string password, byte[] nickhashed, int counter, byte[] G, byte[] J, byte[] P, byte[] Q, byte[] Seed, byte[] X, byte[] Y)
 {
     Client.ServeurChat.RegisterRequest inValue = new Client.ServeurChat.RegisterRequest();
     inValue.Body            = new Client.ServeurChat.RegisterRequestBody();
     inValue.Body.nick       = nick;
     inValue.Body.password   = password;
     inValue.Body.nickhashed = nickhashed;
     inValue.Body.counter    = counter;
     inValue.Body.G          = G;
     inValue.Body.J          = J;
     inValue.Body.P          = P;
     inValue.Body.Q          = Q;
     inValue.Body.Seed       = Seed;
     inValue.Body.X          = X;
     inValue.Body.Y          = Y;
     Client.ServeurChat.RegisterResponse retVal = ((Client.ServeurChat.ServeurChatSoap)(this)).Register(inValue);
     return(retVal.Body.RegisterResult);
 }
Ejemplo n.º 2
0
 Client.ServeurChat.RegisterResponse Client.ServeurChat.ServeurChatSoap.Register(Client.ServeurChat.RegisterRequest request)
 {
     return(base.Channel.Register(request));
 }