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.178 -- Release Build+ff8c4ec86648cef21d788c1ae4346eaec7de7ef3
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