Table of Contents

Class UploadSignedUrl

Namespace
Supabase.Storage
Assembly
Supabase.Storage.dll

Represents a Generated Upload Signed Url - can be used to upload a file without needing a logged in token or user.

public class UploadSignedUrl
Inheritance
UploadSignedUrl
Inherited Members

Constructors

UploadSignedUrl(Uri, string, string)

public UploadSignedUrl(Uri signedUrl, string token, string key)

Parameters

signedUrl Uri
token string
key string

Properties

Key

The Key that can be uploaded to (the supabase filename)

public string Key { get; }

Property Value

string

SignedUrl

The Full Signed Url

public Uri SignedUrl { get; }

Property Value

Uri

Token

The generated token

public string Token { get; }

Property Value

string