Class SupabaseOptions
- Namespace
- Supabase
- Assembly
- Supabase.dll
Options available for Supabase Client Configuration
public class SupabaseOptions
- Inheritance
-
SupabaseOptions
- Inherited Members
- Extension Methods
Fields
Headers
Allows developer to specify options that will be passed to all child Supabase clients.
public Dictionary<string, string> Headers
Field Value
Schema
Schema to be used in Postgres / Realtime
public string Schema
Field Value
Properties
AuthUrlFormat
The Supabase Auth Url Format
public string AuthUrlFormat { get; set; }
Property Value
AutoConnectRealtime
Should the Client automatically connect to Realtime?
public bool AutoConnectRealtime { get; set; }
Property Value
AutoRefreshToken
Should the Client automatically handle refreshing the User's Token?
public bool AutoRefreshToken { get; set; }
Property Value
FunctionsUrlFormat
The Supabase Functions Url Format
public string FunctionsUrlFormat { get; set; }
Property Value
RealtimeUrlFormat
The Supabase Realtime Url Format
public string RealtimeUrlFormat { get; set; }
Property Value
RestUrlFormat
The Supabase Postgrest Url Format
public string RestUrlFormat { get; set; }
Property Value
SessionHandler
Functions passed to Gotrue that handle sessions.
By default these do nothing for persistence.
public IGotrueSessionPersistence<Session> SessionHandler { get; set; }
Property Value
StorageClientOptions
Specifies Options passed to the StorageClient.
public ClientOptions StorageClientOptions { get; set; }
Property Value
StorageUrlFormat
The Supabase Storage Url Format
public string StorageUrlFormat { get; set; }