ParseRequest::Callback Property

 

Specifies the callback delegate to be called when the parsing operation has completed.

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

public:
property ParseResultHandler^ Callback {
	ParseResultHandler^ get();
	void set(ParseResultHandler^ value);
}

This property is assigned to after the ParseRequest object has been created by a call to CreateParseRequest. If this property returns null, then no call back is required.

BeginParse in the LanguageService class sets this property just before it starts the parsing operation.

Return to top
Show: