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
BrowserStatusThe status of the browser operation.
callbackUrl
stringThe 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
BrowserStatusThe status of the browser operation.
callbackUrl
stringThe callback URL returned from the browser operation.
error
stringThe error message from the browser operation.
Properties
CallbackUrl
Gets the callback URL returned from the browser operation.
public string CallbackUrl { get; }
Property Value
Error
Gets the error message, if any, from the browser operation.
public string Error { get; }
Property Value
Status
Gets the status of the browser operation.
public BrowserStatus Status { get; }