Table of Contents

Class SignInWithPasswordlessOptions

Namespace
Supabase.Gotrue
Assembly
Supabase.Gotrue.dll

Options used for signing in a user with passwordless Options

public class SignInWithPasswordlessOptions
Inheritance
SignInWithPasswordlessOptions
Derived
Inherited Members

Fields

Data

A custom data object to store the user's metadata. This maps to the auth.users.user_metadata column.

The data should be a JSON serializable object that includes user-specific info, such as their first and last name.

public Dictionary<string, object> Data

Field Value

Dictionary<string, object>

Properties

CaptchaToken

Verification token received when the user completes the captcha on the site.

public string? CaptchaToken { get; set; }

Property Value

string

ShouldCreateUser

If set to false, this method will not create a new user. Defaults to true.

public bool ShouldCreateUser { get; set; }

Property Value

bool