Marks the user context as dirty in the specified source buffer.
Namespace: Microsoft.VisualStudio.Package
Assembly: Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Syntax
'宣言
Public Sub SetUserContextDirty ( _
fileName As String _
)
'使用
Dim instance As LanguageService
Dim fileName As String
instance.SetUserContextDirty(fileName)
public void SetUserContextDirty(
string fileName
)
public:
void SetUserContextDirty(
String^ fileName
)
public function SetUserContextDirty(
fileName : String
)
Parameters
fileName
Type: System.String[in] The file name of the source buffer for which to mark the user context dirty.
Remarks
The user context is used to provide context-sensitive help. This method is called by default from the base OnParseComplete method, which itself is called whenever a parse operation is performed with the parse reason Check. The assumption here is if a Check parse is performed, the user context is probably no longer accurate and should be marked dirty. This forces Visual Studio to update the context at the next opportunity.
Permissions
- 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.