VCCodeBase.IsZombie Property
Gets whether the VCCodeBase object exists.
Namespace: Microsoft.VisualStudio.VCCodeModel
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
'إقرار
ReadOnly Property IsZombie As Boolean
Get
'الاستخدام
Dim instance As VCCodeBase
Dim value As Boolean
value = instance.IsZombie
bool IsZombie { get; }
property bool IsZombie {
bool get ();
}
abstract IsZombie : bool
function get IsZombie () : boolean
Type: System.Boolean
true if it does not exist; otherwise, false.
A VCCodeModel object represents the state of that particular object as it were in the file at the time it was retrieved. However, the user can hold a reference to a VCCodeModel object that no longer exists. Because the object no longer exists, calling any method on it fails.
The IsZombie property is true when that particular object no longer exists. This situation can occur when the class declaration has been removed, the project has been closed, or other conditions have arisen.
- 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.