C#: Sign in a user

Log in an existing user using email or phone number with password.

Examples

Sign in with email and password

var session = await supabase.Auth.SignIn(email, password);

Sign in with phone and password

var session = await supabase.Auth.SignIn(SignInType.Phone, phoneNumber, password);