IVsCompletionSet::Dismiss Method ()
Visual Studio 2015
Releases the completion set when it is no longer needed.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
From textmgr.idl:
HRESULT IVsCompletionSet::Dismiss();
This method is called by the view when the completion set is no longer needed. If you want to force a dismissal of a completion set for a language service, then call M:Microsoft.VisualStudio.TextManager.Interop.IVsTextView.UpdateCompletionStatus(Microsoft.VisualStudio.TextManager.Interop.IVsCompletionSet,System.UInt32) with the pCompSet parameter set equal to null. If you already have a completion set cached for your view, call Dismiss to release the completion set. This method also removes the user interface along with the completion list and any tips.
Show: