IPeekResult::PostNavigationCallback Property

Visual Studio 2015
 

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

Namespace:   Microsoft.VisualStudio.Language.Intellisense
Assembly:  Microsoft.VisualStudio.Language.Intellisense (in Microsoft.VisualStudio.Language.Intellisense.dll)

property Action<IPeekResult^, Object^, Object^>^ PostNavigationCallback {
	Action<IPeekResult^, Object^, Object^>^ get();
}

Property Value

Type: System::Action<IPeekResult^, Object^, Object^>^

Returns Action<T1, T2, T3>.

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).

Return to top
Show: