Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Determines if a background parse is in progress.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Syntax
'Declaration
Public Property IsParsing As Boolean
Get
Set
'Usage
Dim instance As LanguageService
Dim value As Boolean
value = instance.IsParsing
instance.IsParsing = value
public bool IsParsing { get; set; }
public:
property bool IsParsing {
bool get ();
void set (bool value);
}
member IsParsing : bool with get, set
function get IsParsing () : boolean
function set IsParsing (value : boolean)
Property Value
Type: System.Boolean
Returns true if a background parsing operation is running; otherwise, returns false.
Remarks
This property is set by the base class just before the ParseSource method is called on a background thread and the property is cleared just after the ParseSource method returns.
.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.