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
[BrowsableAttribute(false)]
public virtual bool IsExtensible { get; set; }
[BrowsableAttribute(false)]
public:
virtual property bool IsExtensible {
bool get ();
void set (bool value);
}
[<BrowsableAttribute(false)>]
abstract IsExtensible : bool with get, set
[<BrowsableAttribute(false)>]
override IsExtensible : bool with get, set
function get IsExtensible () : boolean
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.