Table of Contents

Class BrowserResult

Namespace
Thirdweb
Assembly
Thirdweb.dll

Represents the result of a browser-based login operation.

public class BrowserResult
Inheritance
BrowserResult
Inherited Members

Constructors

BrowserResult(BrowserStatus, string)

Initializes a new instance of the BrowserResult class with the specified status and callback URL.

public BrowserResult(BrowserStatus status, string callbackUrl)

Parameters

status BrowserStatus

The status of the browser operation.

callbackUrl string

The callback URL returned from the browser operation.

BrowserResult(BrowserStatus, string, string)

Initializes a new instance of the BrowserResult class with the specified status, callback URL, and error message.

public BrowserResult(BrowserStatus status, string callbackUrl, string error)

Parameters

status BrowserStatus

The status of the browser operation.

callbackUrl string

The callback URL returned from the browser operation.

error string

The error message from the browser operation.

Properties

CallbackUrl

Gets the callback URL returned from the browser operation.

public string CallbackUrl { get; }

Property Value

string

Error

Gets the error message, if any, from the browser operation.

public string Error { get; }

Property Value

string

Status

Gets the status of the browser operation.

public BrowserStatus Status { get; }

Property Value

BrowserStatus