ConnectionStringEditor.SetProviderName(Object, DesignerDataConnection) Method

Definition

Puts the provider name on the specified instance of the ConnectionStringEditor class.

protected:
 virtual void SetProviderName(System::Object ^ instance, System::ComponentModel::Design::Data::DesignerDataConnection ^ connection);
protected virtual void SetProviderName (object instance, System.ComponentModel.Design.Data.DesignerDataConnection connection);
abstract member SetProviderName : obj * System.ComponentModel.Design.Data.DesignerDataConnection -> unit
override this.SetProviderName : obj * System.ComponentModel.Design.Data.DesignerDataConnection -> unit
Protected Overridable Sub SetProviderName (instance As Object, connection As DesignerDataConnection)

Parameters

instance
Object

A ConnectionStringEditor or an instance of a derived class.

Remarks

The SetProviderName method sets the provider name on the instance parameter. For example, in the SqlDataSourceConnectionStringEditor, which derives from the ConnectionStringEditor class, this either sets the provider name or adds an ExpressionBinding object, if the connection is a configured connection. In this implementation, the SetProviderName method does nothing.

Applies to

See also