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
- 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.