Click or drag to resize
PromisesWaitT Method
Block the current thread waiting for a promise to complete

Namespace: Innovator.Client
Assembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax
public static T Wait<T>(
	this IPromise<T> promise
)

Parameters

promise
Type: Innovator.ClientIPromiseT
The promise to wait for

Type Parameters

T

Return Value

Type: T
The resolved value of the promise

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IPromiseT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also