ParseRequest.DirtySpan Property

Specifies a span of source that has changed.

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

Syntax

'宣言
Public Property DirtySpan As TextSpan
'使用
Dim instance As ParseRequest
Dim value As TextSpan

value = instance.DirtySpan

instance.DirtySpan = value
public TextSpan DirtySpan { get; set; }
public:
property TextSpan DirtySpan {
    TextSpan get ();
    void set (TextSpan value);
}
public function get DirtySpan () : TextSpan
public function set DirtySpan (value : TextSpan)

Property Value

Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan

Returns a TextSpan object specifying a span of source.

Remarks

This is typically set to limit the extent of the parsing operation as an optimization. It can be ignored by a parser.

Permissions

See Also

Reference

ParseRequest Class

ParseRequest Members

Microsoft.VisualStudio.Package Namespace