Table of Contents

Class SignInAnonymouslyOptions

Namespace
Supabase.Gotrue
Assembly
Supabase.Gotrue.dll

Options for handling signing in anonymously

public class SignInAnonymouslyOptions
Inheritance
SignInAnonymouslyOptions
Inherited Members

Properties

CaptchaToken

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

[JsonProperty("captchaToken")]
public string? CaptchaToken { get; set; }

Property Value

string

Data

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

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

[JsonProperty("data")]
public Dictionary<string, object>? Data { get; set; }

Property Value

Dictionary<string, object>