Share via


LanguageService.IsParsing Property

Determines if a background parse is in progress.

Namespace:  Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)

Syntax

'Declaration
Public Property IsParsing As Boolean
'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);
}
public function get IsParsing () : boolean 
public 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

See Also

Reference

LanguageService Class

LanguageService Members

Microsoft.VisualStudio.Package Namespace