IVsThreadedWaitDialog2 Interface

 

Implemented by the Visual Studio shell. This interface allows a modal dialog to be displayed on a background thread so that the IDE appears responsive even when the foreground thread is busy with an extended operation. You can get this interface via SVsThreadedWaitDialogFactory. This dialog differs from IVsThreadedWaitDialog in that it can have both a progress bar and a Cancel button at the same time. It also supports progress with accurate percentages.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)

[GuidAttribute("88194D8B-88DA-4C33-A2C6-15140626E222")]
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsThreadedWaitDialog2

NameDescription
System_CAPS_pubmethodEndWaitDialog(Int32)

Closes the wait dialog.

System_CAPS_pubmethodHasCanceled(Boolean)

Determines whether the dialog was canceled.

System_CAPS_pubmethodStartWaitDialog(String, String, String, Object, String, Int32, Boolean, Boolean)

Displays an instance of a wait dialog.

System_CAPS_pubmethodStartWaitDialogWithPercentageProgress(String, String, String, Object, String, Boolean, Int32, Int32, Int32)

Displays a wait dialog with a percentage-based progress bar.

System_CAPS_pubmethodUpdateProgress(String, String, String, Int32, Int32, Boolean, Boolean)

Updates the progress on the wait dialog.

Return to top
Show: