Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataTableReader::GetProviderSpecificValues Method (array<Object^>^)

 

Fills the supplied array with provider-specific type information for all the columns in the DataTableReader.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
virtual int GetProviderSpecificValues(
	array<Object^>^ values
) override

Parameters

values
Type: array<System::Object^>^

An array of objects to be filled in with type information for the columns in the DataTableReader.

Return Value

Type: System::Int32

The number of column values copied into the array.

Exception Condition
DeletedRowInaccessibleException

An attempt was made to retrieve data from a deleted row.

InvalidOperationException

An attempt was made to read or access a column in a closed DataTableReader.

Because the DataTableReader always returns the data of the type stored within the underlying DataColumn, the values returned by calling the GetProviderSpecificValues method is always of the same types as the data stored within the DataTable. When you work with the DataTableReader class, calling the GetProviderSpecificValues method returns the same values and types as calling the GetValues method.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft