Promise.any method

4 out of 5 rated this helpful - Rate this topic

Returns a promise that is fulfilled when one of the input promises has been fulfilled.

Syntax


WinJS.Promise.any(value).done( /* Your success and error handlers */ );

Parameters

value

Type: Array

An array that contains Promise objects or objects whose property values include Promise objects.

Return value

Type: Promise

A promise that on fulfillment yields the value of the input (complete or error).

Remarks


WinJS.Promise.any(promiseAray);

Requirements

Minimum supported client

Windows 8 [Windows Store apps only]

Minimum supported server

Windows Server 2012 [Windows Store apps only]

Namespace

WinJS

Library

Base.js

See also

Promise

 

 

Build date: 12/5/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.