Table of Contents

Class ResetPasswordForEmailOptions

Namespace
Supabase.Gotrue
Assembly
Supabase.Gotrue.dll

A utility class that represents a successful response from a request to send a user's password reset using the PKCE flow.

public class ResetPasswordForEmailOptions
Inheritance
ResetPasswordForEmailOptions
Inherited Members

Constructors

ResetPasswordForEmailOptions(string)

Initializes a new instance of the ResetPasswordForEmailOptions class with the provided email.

public ResetPasswordForEmailOptions(string email)

Parameters

email string

The email of the user account for which the password is being reset.

Properties

CaptchaToken

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

public string? CaptchaToken { get; set; }

Property Value

string

Email

The Email representing the user's account whose password is being reset.

public string Email { get; }

Property Value

string

FlowType

The OAuth Flow Type.

public Constants.OAuthFlowType FlowType { get; set; }

Property Value

Constants.OAuthFlowType

PKCEVerifier

PKCE Verifier generated if using the PKCE flow type.

public string? PKCEVerifier { get; set; }

Property Value

string

RedirectTo

The URL to send the user to after they click the password reset link.

public string? RedirectTo { get; set; }

Property Value

string