DataProviderNameConverter.GetStandardValues(ITypeDescriptorContext) Method

Definition

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

public:
 override System::ComponentModel::TypeConverter::StandardValuesCollection ^ GetStandardValues(System::ComponentModel::ITypeDescriptorContext ^ context);
public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues (System.ComponentModel.ITypeDescriptorContext context);
override this.GetStandardValues : System.ComponentModel.ITypeDescriptorContext -> System.ComponentModel.TypeConverter.StandardValuesCollection
Public Overrides Function GetStandardValues (context As ITypeDescriptorContext) As TypeConverter.StandardValuesCollection

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

See also