IVsPackage Interface
Initializes a VSPackage in the environment and makes its services available to the environment.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<GuidAttribute("D4F3F4B1-E900-4E51-ADB3-D532348F83CB")> _
<InterfaceTypeAttribute()> _
Public Interface IVsPackage
[GuidAttribute("D4F3F4B1-E900-4E51-ADB3-D532348F83CB")]
[InterfaceTypeAttribute()]
public interface IVsPackage
[GuidAttribute(L"D4F3F4B1-E900-4E51-ADB3-D532348F83CB")]
[InterfaceTypeAttribute()]
public interface class IVsPackage
[<GuidAttribute("D4F3F4B1-E900-4E51-ADB3-D532348F83CB")>]
[<InterfaceTypeAttribute()>]
type IVsPackage = interface end
public interface IVsPackage
The IVsPackage type exposes the following members.
Methods
Name | Description | |
---|---|---|
Close | Closes the VSPackage, releases cached interface pointers, and unadvises event sinks. | |
CreateTool | Enables the environment to create on-demand tool windows that are implemented by VSPackages. | |
GetAutomationObject | Enables a VSPackage to participate in the DTE automation object model. | |
GetPropertyPage | Proffers access to the Tools menu Options and the property pages of the Customize Toolbox dialog boxes. | |
QueryClose | Enables a VSPackage that requires user intervention to abort the shutdown process. | |
ResetDefaults | Resets Toolbox defaults. | |
SetSite | Initializes a VSPackage with a back pointer to the environment. |
Top
Remarks
This interface must be implemented on all VSPackage classes. Visual Studio uses this interface to call on the VSPackage for services it might provide. Most extensions start out by loading a VSPackage, which is sited to the environment. The calling VSPackage is handed a pointer to a service provider.
Notes to Implementers
Implement IVsPackage whenever you initialize a VSPackage.
If a package needs to block shutdown of the IDE it should implement IVsPackage2.