ParseRequest.Callback Property

Definition

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.

Applies to