ParseRequest.Timestamp Property

Specifies a time stamp for the parse request.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
  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)

Syntax

声明
Public Property Timestamp As Integer
    Get
    Set
用法
Dim instance As ParseRequest
Dim value As Integer

value = instance.Timestamp

instance.Timestamp = value
public int Timestamp { get; set; }
public:
property int Timestamp {
    int get ();
    void set (int value);
}
member Timestamp : int with get, set
function get Timestamp () : int
function set Timestamp (value : int)

Property Value

Type: System.Int32
Returns a number that represents a point in time.

Remarks

The value stored in this is not an actual time value; it is used to handle the situation where a parsing operation may have been started due to a change in the source but by the time the parse was finished, another change had been made and the results of the first parse may be invalid or otherwise considered stale. The Source class uses this property internally to prevent stale information from appearing in completion lists, brace matching, and method tips.

.NET Framework Security

See Also

Reference

ParseRequest Class

ParseRequest Members

Microsoft.VisualStudio.Package Namespace