DataConnectionProperties Constructors
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.
Overloads
DataConnectionProperties() |
Class constructor. Instantiates a non-parameterized instance of the DataConnectionProperties class. |
DataConnectionProperties(IComparer) |
Class constructor. Instantiates a parameterized instance of the DataConnectionProperties class that provides the ability to compare property names. |
DataConnectionProperties(IComparer, Char, Char) |
Class constructor. Instantiates a parameterized instance of the DataConnectionProperties class that provides the ability to compare property names. |
DataConnectionProperties()
Class constructor. Instantiates a non-parameterized instance of the DataConnectionProperties class.
public:
DataConnectionProperties();
public DataConnectionProperties ();
Public Sub New ()
Applies to
DataConnectionProperties(IComparer)
Class constructor. Instantiates a parameterized instance of the DataConnectionProperties class that provides the ability to compare property names.
public:
DataConnectionProperties(System::Collections::IComparer ^ propertyNameComparer);
public DataConnectionProperties (System.Collections.IComparer propertyNameComparer);
new Microsoft.VisualStudio.Data.DataConnectionProperties : System.Collections.IComparer -> Microsoft.VisualStudio.Data.DataConnectionProperties
Public Sub New (propertyNameComparer As IComparer)
Parameters
- propertyNameComparer
- IComparer
A comparer of property names.
Applies to
DataConnectionProperties(IComparer, Char, Char)
Class constructor. Instantiates a parameterized instance of the DataConnectionProperties class that provides the ability to compare property names.
public:
DataConnectionProperties(System::Collections::IComparer ^ propertyNameComparer, char propertyNameValueSeparator, char propertyEntrySeparator);
public DataConnectionProperties (System.Collections.IComparer propertyNameComparer, char propertyNameValueSeparator, char propertyEntrySeparator);
new Microsoft.VisualStudio.Data.DataConnectionProperties : System.Collections.IComparer * char * char -> Microsoft.VisualStudio.Data.DataConnectionProperties
Public Sub New (propertyNameComparer As IComparer, propertyNameValueSeparator As Char, propertyEntrySeparator As Char)
Parameters
- propertyNameComparer
- IComparer
A comparer of property names.
- propertyNameValueSeparator
- Char
The character placed between the property name and property value in the connection string (for example, "=").
- propertyEntrySeparator
- Char
The character placed between two property name/value pairs (for example, ";").