DataProviderNameConverter.GetStandardValues(ITypeDescriptorContext) Method

Definition

Returns a list of the available ActiveX® Data Objects (ADO) for the .NET Framework (ADO.NET) provider names.

C#
public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context);

Parameters

context
ITypeDescriptorContext

An object implementing the ITypeDescriptorContext that provides information about a context to a type converter so that the type converter can perform a conversion.

Returns

A TypeConverter.StandardValuesCollection containing the names of the available ADO.NET providers.

Remarks

The GetStandardValues method uses the GetFactoryClasses method to return a DataTable object containing the ADO.NET provider names. It converts this DataTable to a string array, and then converts this array to a TypeConverter.StandardValuesCollection object.

The context parameter is not used by the GetStandardValues.

Applies to

Продукт Версії
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also