Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbConnectionStringBuilder::BrowsableConnectionString Property

 

Gets or sets a value that indicates whether the ConnectionString property is visible in Visual Studio designers.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
[BrowsableAttribute(false)]
property bool BrowsableConnectionString {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the connection string is visible within designers; false otherwise. The default is true.

Developers creating designers that take advantage of the DbConnectionStringBuilder class must be able to make the connection string visible or invisible within the designer's property grid. The BrowsableConnectionString property lets developers indicate that the property should be invisible by setting the property to false.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft