Package.Zombied Property
Gets a value indicating whether the package in the process of shutdown.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Syntax
'Declaración
Public ReadOnly Property Zombied As Boolean
Get
'Uso
Dim instance As Package
Dim value As Boolean
value = instance.Zombied
public bool Zombied { get; }
public:
property bool Zombied {
bool get ();
}
member Zombied : bool
function get Zombied () : boolean
Property Value
Type: System.Boolean
true if the package is in the process of shutdown, otherwise false.
Remarks
The Zombied property indicates that the package is being shut down. It returns true when the package’s Close method is called by Visual Studio.
It is usually not appropriate to initiate any new activity when the VSPackage is being closed.
.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.