Click or drag to resize

JavaScriptExtensionsToAsyncEnumerable Method

Supports managed asynchronous iteration over an async-iterable script object.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public static IAsyncEnumerable<Object> ToAsyncEnumerable(
	this Object asyncIterable
)

Parameters

asyncIterable  Object
An async-iterable script object (see remarks).

Return Value

IAsyncEnumerableObject
An IAsyncEnumerator<Object> implementation that supports managed asynchronous iteration over asyncIterable.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. 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).
Remarks
If the argument implements IAsyncEnumerator<Object>, this method returns it as is.
See Also