Share via


DataConnectionProperties.IsExtensible Property

Retrieves or sets a Boolean value indicating whether the DDEX Provider connection properties are extensible.

Namespace:  Microsoft.VisualStudio.Data
Assembly:  Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public Overridable Property IsExtensible As Boolean
'Usage
Dim instance As DataConnectionProperties 
Dim value As Boolean 

value = instance.IsExtensible

instance.IsExtensible = value
[BrowsableAttribute(false)]
public virtual bool IsExtensible { get; set; }
[BrowsableAttribute(false)]
public:
virtual property bool IsExtensible {
    bool get ();
    void set (bool value);
}
public function get IsExtensible () : boolean 
public function set IsExtensible (value : boolean)

Property Value

Type: System.Boolean
Returns true if the connection properties are extensible. Returns false otherwise.

Implements

IDataConnectionProperties.IsExtensible

Remarks

An instance of the DataConnectionProperties class is extensible when custom properties not natively recognized by the data provider can be added to the collection. For example, on ODBC there are only a few keywords that are standard for all drivers; all other keywords are driver specific and thus not known by the ODBC data provider.

.NET Framework Security

See Also

Reference

DataConnectionProperties Class

DataConnectionProperties Members

Microsoft.VisualStudio.Data Namespace