Share via


IPeekResult.PostNavigationCallback Property

Definition

This function will be called directly after navigation completes (if navigation was successful).

public:
 property Action<Microsoft::VisualStudio::Language::Intellisense::IPeekResult ^, System::Object ^, System::Object ^> ^ PostNavigationCallback { Action<Microsoft::VisualStudio::Language::Intellisense::IPeekResult ^, System::Object ^, System::Object ^> ^ get(); };
public Action<Microsoft.VisualStudio.Language.Intellisense.IPeekResult,object,object> PostNavigationCallback { get; }
member this.PostNavigationCallback : Action<Microsoft.VisualStudio.Language.Intellisense.IPeekResult, obj, obj>
Public ReadOnly Property PostNavigationCallback As Action(Of IPeekResult, Object, Object)

Property Value

Returns Action<T1,T2,T3>.

Remarks

Argument 1: this IPeekResult. Argument 2: data that this IPeekResult decides to pass in from the results of its navigation (e.g. a handle to a newly opened text view). Note: Argument 2 can be null if this IPeekResult has nothing to pass in. Argument 3: data that is set by the caller of NavigateTo(Object).

Applies to