Example #1
0
 public bool LogIn(string nick, string password, byte[] nickhashed, int counter, byte[] G, byte[] J, byte[] P, byte[] Q, byte[] Seed, byte[] X, byte[] Y)
 {
     Client.ServeurChat.LogInRequest inValue = new Client.ServeurChat.LogInRequest();
     inValue.Body            = new Client.ServeurChat.LogInRequestBody();
     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.LogInResponse retVal = ((Client.ServeurChat.ServeurChatSoap)(this)).LogIn(inValue);
     return(retVal.Body.LogInResult);
 }
Example #2
0
 Client.ServeurChat.LogInResponse Client.ServeurChat.ServeurChatSoap.LogIn(Client.ServeurChat.LogInRequest request)
 {
     return(base.Channel.LogIn(request));
 }