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::IsFixedSize Property

 

Gets a value that indicates whether the DbConnectionStringBuilder has a fixed size.

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

public:
[BrowsableAttribute(false)]
property bool IsFixedSize {
	virtual bool get();
}

Property Value

Type: System::Boolean

true if the DbConnectionStringBuilder has a fixed size; otherwise false.

A fixed-size collection does not allow adding or removing elements after the collection is created, but it does allow modifying existing elements.

A fixed-size collection is just a collection with a wrapper that prevents adding and removing elements; therefore, if changes are made to the underlying collection, including adding or removing elements, the fixed-size collection reflects those changes.

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