V8PromiseRejectionEventKind Enumeration |
Defines
promise rejection event kinds.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.1.1
Syntaxpublic enum V8PromiseRejectionEventKind
Public Enumeration V8PromiseRejectionEventKind
public enum class V8PromiseRejectionEventKind
type V8PromiseRejectionEventKind
Members| Member name | Value | Description |
|---|
| RejectedWithoutHandler | 0 |
Indicates that a promise was rejected without a handler.
|
| HandlerAddedAfterRejection | 1 |
Indicates that a handler was added for a previously rejected promise.
|
| RejectedAfterSettlement | 2 |
Indicates that a settled promise was subsequently rejected.
|
| ResolvedAfterSettlement | 3 |
Indicates that a settled promise was subsequently resolved.
|
See Also