Click or drag to resize

IJsPromise Methods

The IJsPromise type exposes the following members.

Methods
  NameDescription
Public methodCatch(ActionObject)
Appends the rejection handler to the promise.
Public methodCatch(FuncObject, Object)
Appends the rejection handler to the promise.
Public methodFinally(ActionObject)
Appends the handler that will be invoked if the promise is settled (fulfilled/rejected).
Public methodFinally(FuncObject, Object)
Appends the handler that will be invoked if the promise is settled (fulfilled/rejected).
Public methodInvokeT(String, Object)
Executes the function with the given methodName and the args in the JavaScript object. This method blocks current thread execution until the function finishes its execution. If the function raises an exception, then a JsException with an error message that describes the reason of the exception will be thrown. Same error message will be printed in JavaScript Console.
(Inherited from IJsObject.)
Public methodThen(ActionObject, ActionObject)
Appends fulfillment and rejection handlers to the promise.
Public methodThen(FuncObject, Object, FuncObject, Object)
Appends fulfillment and rejection handlers to the promise.
Top
Extension Methods
  NameDescription
Public Extension MethodToJsonString
Converts the given JavaScript object into a JSON string.
(Defined by JsonExtensions.)
Top
See Also