IScanner::SetSource Method (String^, Int32)

 

Sets the line to be parsed.

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

void SetSource(
	String^ source,
	int offset
)

Parameters

source
Type: System::String^

[in] The line to be tokenized.

offset
Type: System::Int32

[in] The character offset into the line to start parsing. You must pay attention to this value.

Language service scanning is always done on a line-by-line basis. This method is called to set the line to be parsed by subsequent calls to the ScanTokenAndProvideInfoAboutIt method.

Return to top
Show: