Register

Users require a token to register, only the developer can make them available for users to get access to

C# WINFORMS
/* C# WINFORMS */
using TrinitySeal;

private void Button1_Click() { // Register button event handler

SealCheck.HashChecks(); // Check integrity of auth files

if (SealCheck.isValidDLL) {
   // The register arguments goes in the order: username, password, email, token
   bool response = TrinitySeal.Seal.Register(textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text);
   if (response){
   // Register was successful
   }
   else {
   // Register wasn't a success
   }
}

}

Last updated

Was this helpful?