Class AwaitPromiseResult
public sealed record AwaitPromiseResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<AwaitPromiseResult>
- Inheritance
-
EmptyResultAwaitPromiseResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
AwaitPromiseResult(RemoteObject, ExceptionDetails?)
public AwaitPromiseResult(RemoteObject Result, ExceptionDetails? ExceptionDetails)
Parameters
ResultRemoteObjectPromise result. Will contain rejected value if promise was rejected.
ExceptionDetailsExceptionDetailsException details if stack strace is available.
Properties
ExceptionDetails
Exception details if stack strace is available.
public ExceptionDetails? ExceptionDetails { get; init; }
Property Value
Result
Promise result. Will contain rejected value if promise was rejected.
public RemoteObject Result { get; init; }