Exemple #1
0
 // creates a http request with user credentials and attempts to create a new user
 public void SignUpNewUserWithEmailAndPassword(string email, string password)
 {
     authRequest = new AuthReq(email, password);
     auth.Create(authRequest).completed += SignUpCallback;
 }