|
297 | 297 | "api/Supabase.Gotrue.ProviderAuthState.html": { |
298 | 298 | "href": "api/Supabase.Gotrue.ProviderAuthState.html", |
299 | 299 | "title": "Class ProviderAuthState | gotrue-csharp", |
300 | | - "summary": "Class ProviderAuthState Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Represents an OAuth Provider's URI and Parameters. For use with Provider Auth, PKCE Auth, and ID Token auth. public class ProviderAuthState Inheritance object ProviderAuthState Derived SSOResponse Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors ProviderAuthState(Uri) Constructor public ProviderAuthState(Uri uri) Parameters uri Uri Properties PKCEVerifier The PKCE Verifier nonce, only set during a PKCE auth flow. public string? PKCEVerifier { get; set; } Property Value string Uri The Generated Provider's URI public Uri Uri { get; set; } Property Value Uri" |
| 300 | + "summary": "Class ProviderAuthState Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Represents an OAuth Provider's URI and Parameters. For use with Provider Auth, PKCE Auth, and ID Token auth. public class ProviderAuthState Inheritance object ProviderAuthState Derived SSOResponse Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors ProviderAuthState(Uri) Constructor public ProviderAuthState(Uri uri) Parameters uri Uri Properties PKCEVerifier The PKCE Verifier nonce, only set during a PKCE auth flow. public string? PKCEVerifier { get; set; } Property Value string State The state parameter included in the OAuth URL for CSRF protection (RFC 6749 §10.12). Validate this against the state echoed back in the OAuth callback. public string State { get; set; } Property Value string Uri The Generated Provider's URI public Uri Uri { get; set; } Property Value Uri" |
301 | 301 | }, |
302 | 302 | "api/Supabase.Gotrue.ResetPasswordForEmailOptions.html": { |
303 | 303 | "href": "api/Supabase.Gotrue.ResetPasswordForEmailOptions.html", |
|
327 | 327 | "api/Supabase.Gotrue.SSOResponse.html": { |
328 | 328 | "href": "api/Supabase.Gotrue.SSOResponse.html", |
329 | 329 | "title": "Class SSOResponse | gotrue-csharp", |
330 | | - "summary": "Class SSOResponse Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Single sign on (SSO) response data deserialized from the API {supabaseAuthUrl}/sso public class SSOResponse : ProviderAuthState Inheritance object ProviderAuthState SSOResponse Inherited Members ProviderAuthState.Uri ProviderAuthState.PKCEVerifier object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors SSOResponse(Uri) Deserialized response from {supabaseAuthUrl}/sso public SSOResponse(Uri uri) Parameters uri Uri Uri from the response, this will open the SSO providers login page and allow a user to login to their provider" |
| 330 | + "summary": "Class SSOResponse Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Single sign on (SSO) response data deserialized from the API {supabaseAuthUrl}/sso public class SSOResponse : ProviderAuthState Inheritance object ProviderAuthState SSOResponse Inherited Members ProviderAuthState.Uri ProviderAuthState.PKCEVerifier ProviderAuthState.State object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Constructors SSOResponse(Uri) Deserialized response from {supabaseAuthUrl}/sso public SSOResponse(Uri uri) Parameters uri Uri Uri from the response, this will open the SSO providers login page and allow a user to login to their provider" |
331 | 331 | }, |
332 | 332 | "api/Supabase.Gotrue.Session.html": { |
333 | 333 | "href": "api/Supabase.Gotrue.Session.html", |
|
347 | 347 | "api/Supabase.Gotrue.SignInOptions.html": { |
348 | 348 | "href": "api/Supabase.Gotrue.SignInOptions.html", |
349 | 349 | "title": "Class SignInOptions | gotrue-csharp", |
350 | | - "summary": "Class SignInOptions Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Options used for signing in a user. public class SignInOptions Inheritance object SignInOptions Derived SignInWithSSOOptions SignUpOptions Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Properties FlowType Represents an OAuth Flow type, defaults to Implicit PKCE is recommended for mobile and server-side applications. public Constants.OAuthFlowType FlowType { get; set; } Property Value Constants.OAuthFlowType QueryParams An object of key-value pairs containing query parameters granted to the OAuth application. public Dictionary<string, string>? QueryParams { get; set; } Property Value Dictionary<string, string> RedirectTo A URL or mobile address to send the user to after they are confirmed. public string? RedirectTo { get; set; } Property Value string Scopes A space-separated list of scopes granted to the OAuth application. public string? Scopes { get; set; } Property Value string" |
| 350 | + "summary": "Class SignInOptions Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Options used for signing in a user. public class SignInOptions Inheritance object SignInOptions Derived SignInWithSSOOptions SignUpOptions Inherited Members object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Properties FlowType Represents an OAuth Flow type, defaults to Implicit PKCE is recommended for mobile and server-side applications. public Constants.OAuthFlowType FlowType { get; set; } Property Value Constants.OAuthFlowType QueryParams An object of key-value pairs containing query parameters granted to the OAuth application. public Dictionary<string, string>? QueryParams { get; set; } Property Value Dictionary<string, string> RedirectTo A URL or mobile address to send the user to after they are confirmed. public string? RedirectTo { get; set; } Property Value string Scopes A space-separated list of scopes granted to the OAuth application. public string? Scopes { get; set; } Property Value string State An optional state parameter for CSRF protection (RFC 6749 §10.12). If not provided, one will be generated automatically. Store the returned State value and validate it against the state echoed back in the OAuth callback. public string? State { get; set; } Property Value string" |
351 | 351 | }, |
352 | 352 | "api/Supabase.Gotrue.SignInWithPasswordlessEmailOptions.html": { |
353 | 353 | "href": "api/Supabase.Gotrue.SignInWithPasswordlessEmailOptions.html", |
|
372 | 372 | "api/Supabase.Gotrue.SignInWithSSOOptions.html": { |
373 | 373 | "href": "api/Supabase.Gotrue.SignInWithSSOOptions.html", |
374 | 374 | "title": "Class SignInWithSSOOptions | gotrue-csharp", |
375 | | - "summary": "Class SignInWithSSOOptions Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Options used for signing in a user using single sign on (SSO). public class SignInWithSSOOptions : SignInOptions Inheritance object SignInOptions SignInWithSSOOptions Inherited Members SignInOptions.RedirectTo SignInOptions.Scopes SignInOptions.QueryParams SignInOptions.FlowType object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Properties CaptchaToken Verification token received when the user completes the captcha on the site. [JsonProperty(\"captchaToken\")] public string? CaptchaToken { get; set; } Property Value string" |
| 375 | + "summary": "Class SignInWithSSOOptions Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Options used for signing in a user using single sign on (SSO). public class SignInWithSSOOptions : SignInOptions Inheritance object SignInOptions SignInWithSSOOptions Inherited Members SignInOptions.RedirectTo SignInOptions.Scopes SignInOptions.QueryParams SignInOptions.FlowType SignInOptions.State object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Properties CaptchaToken Verification token received when the user completes the captcha on the site. [JsonProperty(\"captchaToken\")] public string? CaptchaToken { get; set; } Property Value string" |
376 | 376 | }, |
377 | 377 | "api/Supabase.Gotrue.SignUpOptions.html": { |
378 | 378 | "href": "api/Supabase.Gotrue.SignUpOptions.html", |
379 | 379 | "title": "Class SignUpOptions | gotrue-csharp", |
380 | | - "summary": "Class SignUpOptions Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Options used for signing up a user. public class SignUpOptions : SignInOptions Inheritance object SignInOptions SignUpOptions Inherited Members SignInOptions.RedirectTo SignInOptions.Scopes SignInOptions.QueryParams SignInOptions.FlowType object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Properties Data Optional user metadata. public Dictionary<string, object>? Data { get; set; } Property Value Dictionary<string, object>" |
| 380 | + "summary": "Class SignUpOptions Namespace Supabase.Gotrue Assembly Supabase.Gotrue.dll Options used for signing up a user. public class SignUpOptions : SignInOptions Inheritance object SignInOptions SignUpOptions Inherited Members SignInOptions.RedirectTo SignInOptions.Scopes SignInOptions.QueryParams SignInOptions.FlowType SignInOptions.State object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() Properties Data Optional user metadata. public Dictionary<string, object>? Data { get; set; } Property Value Dictionary<string, object>" |
381 | 381 | }, |
382 | 382 | "api/Supabase.Gotrue.StatelessClient.StatelessClientOptions.html": { |
383 | 383 | "href": "api/Supabase.Gotrue.StatelessClient.StatelessClientOptions.html", |
|
0 commit comments