Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Class constructor. Instantiates a parameterized instance of the DataConnectionProperties class that provides the ability to compare property names.
Namespace:  Microsoft.VisualStudio.Data
Assembly:  Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Public Sub New ( _
    propertyNameComparer As IComparer, _
    propertyNameValueSeparator As Char, _
    propertyEntrySeparator As Char _
)
public DataConnectionProperties(
    IComparer propertyNameComparer,
    char propertyNameValueSeparator,
    char propertyEntrySeparator
)
public:
DataConnectionProperties(
    IComparer^ propertyNameComparer, 
    wchar_t propertyNameValueSeparator, 
    wchar_t propertyEntrySeparator
)
new : 
        propertyNameComparer:IComparer * 
        propertyNameValueSeparator:char * 
        propertyEntrySeparator:char -> DataConnectionProperties
public function DataConnectionProperties(
    propertyNameComparer : IComparer, 
    propertyNameValueSeparator : char, 
    propertyEntrySeparator : char
)
Parameters
- propertyNameComparer
 Type: System.Collections.IComparer
 A comparer of property names.
- propertyNameValueSeparator
 Type: System.Char
 The character placed between the property name and property value in the connection string (for example, "=").
- propertyEntrySeparator
 Type: System.Char
 The character placed between two property name/value pairs (for example, ";").
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DataConnectionProperties Class