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

 

Gets a value that indicates whether the DbConnectionStringBuilder is read-only.

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

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

Property Value

Type: System::Boolean

true if the DbConnectionStringBuilder is read-only; otherwise false. The default is false.

A read-only collection does not allow adding, removing, or modifying elements after the collection is created.

A read-only collection is just a collection with a wrapper that prevents modifying the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.

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