ParseRequest.TokenInfo Property

Specifies a TokenInfo structure that is filled in with the results of the parsing operation.

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

Syntax

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

value = instance.TokenInfo

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

Property Value

Type: Microsoft.VisualStudio.Package.TokenInfo

Returns the TokenInfo object that was passed to the ParseRequest class constructor.

Remarks

Most parsing operations involve a single token and the process that initiated the parse on that token can access information about the token through this property.

Permissions

See Also

Reference

ParseRequest Class

ParseRequest Members

Microsoft.VisualStudio.Package Namespace