DbConnectionStringBuilder.BrowsableConnectionString Property

Definition

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

public:
 property bool BrowsableConnectionString { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool BrowsableConnectionString { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.BrowsableConnectionString : bool with get, set
Public Property BrowsableConnectionString As Boolean

Property Value

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

Attributes

Remarks

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.

Applies to

See also