Table of Contents

Class SearchOptions

Namespace
Supabase.Storage
Assembly
Supabase.Storage.dll
public class SearchOptions
Inheritance
SearchOptions
Inherited Members

Properties

Limit

Number of files to be returned

[JsonProperty("limit")]
public int Limit { get; set; }

Property Value

int

Offset

Starting position of query

[JsonProperty("offset")]
public int Offset { get; set; }

Property Value

int

The search string to filter files by

[JsonProperty("search")]
public string Search { get; set; }

Property Value

string

SortBy

Column to sort by. Can be any colum inside of a FileObject

[JsonProperty("sortBy")]
public SortBy SortBy { get; set; }

Property Value

SortBy