ParseRequest.Callback Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the callback delegate to be called when the parsing operation has completed.
public:
property Microsoft::VisualStudio::Package::ParseResultHandler ^ Callback { Microsoft::VisualStudio::Package::ParseResultHandler ^ get(); void set(Microsoft::VisualStudio::Package::ParseResultHandler ^ value); };
public Microsoft.VisualStudio.Package.ParseResultHandler Callback { get; set; }
member this.Callback : Microsoft.VisualStudio.Package.ParseResultHandler with get, set
Public Property Callback As ParseResultHandler
Property Value
Returns a ParseResultHandler delegate.
Remarks
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.