DataExtensionsAsAsyncEnumerable Method

Returns an IAsyncEnumerableT of DataRow values from the DataTable.

Definition

Namespace: Gemstone.Data.DataExtensions
Assembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.171 -- Release Build+09eddea1dde2c1898c071986897c26dec26592bc
public static IAsyncEnumerable<DataRow> AsAsyncEnumerable(
	this DataTable source
)

Parameters

source  DataTable
The source DataTable to make async enumerable.

Return Value

IAsyncEnumerableDataRow
An IAsyncEnumerableT of DataRow values from the DataTable.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataTable. 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).

Exceptions

ArgumentNullExceptionThe source DataTable is null>.

See Also