ConnectionStringEditor.SetProviderName(Object, DesignerDataConnection) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- connection
- DesignerDataConnection
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.