Share via


DatabaseProjectConfigurationExtender Class

Derive from this class to create extenders for database project configurations.

This API is not CLS-compliant. 

Inheritance Hierarchy

System..::..Object
  Microsoft.VisualStudio.Data.Tools.Package.Project..::..DatabaseProjectExtenderBase
    Microsoft.VisualStudio.Data.Tools.Package.Project..::..DatabaseProjectConfigurationExtender
      Microsoft.VisualStudio.Data.Tools.Package.Internal..::..AgnosticDatabaseConfigurationExtender
      Microsoft.VisualStudio.Data.Tools.Package.Internal..::..DatabaseConfigurationExtender
      Microsoft.VisualStudio.Data.Tools.Package.Internal..::..StaticCodeAnalysisExtender

Namespace:  Microsoft.VisualStudio.Data.Tools.Package.Project
Assembly:  Microsoft.VisualStudio.Data.Tools.Package (in Microsoft.VisualStudio.Data.Tools.Package.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
<CLSCompliantAttribute(False)> _
Public MustInherit Class DatabaseProjectConfigurationExtender _
    Inherits DatabaseProjectExtenderBase
'Usage
Dim instance As DatabaseProjectConfigurationExtender
[ComVisibleAttribute(true)]
[CLSCompliantAttribute(false)]
public abstract class DatabaseProjectConfigurationExtender : DatabaseProjectExtenderBase
[ComVisibleAttribute(true)]
[CLSCompliantAttribute(false)]
public ref class DatabaseProjectConfigurationExtender abstract : public DatabaseProjectExtenderBase
[<AbstractClassAttribute>]
[<ComVisibleAttribute(true)>]
[<CLSCompliantAttribute(false)>]
type DatabaseProjectConfigurationExtender =  
    class
        inherit DatabaseProjectExtenderBase
    end
public abstract class DatabaseProjectConfigurationExtender extends DatabaseProjectExtenderBase

The DatabaseProjectConfigurationExtender type exposes the following members.

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize Finalizes this object by notifying the site that this extender is invalid (Inherited from DatabaseProjectExtenderBase.)
Protected method GetConfigurationPropertyAsBool Try to get the configuration property as a bool. If it fails to parse return 'defaultValue'.
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString It just so happens that object.ToString() has the right interface to become an IDispatch property, but we don't want to create a ProjectExtender.ToString property, so we need to explicitly implment this method in order to hide it from COM. (Inherited from DatabaseProjectExtenderBase.)

Top

Remarks

NOTE : This class must be ComVisible and public because it's used in the VS property window.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.VisualStudio.Data.Tools.Package.Project Namespace