ServiceProgressData Constructors

Definition

Overloads

ServiceProgressData(String, String)

Reports progress with no completion information./// </summary>/// <param name="waitMessage"> </param>/// <param name="progressText">Message indicating current progress of the operation</param>/// <remarks>Threaded wait dialog will show marquee style progress bar because no detailed progress information is provided</remarks>

ServiceProgressData(String, String, Int32, Int32)

Reports progress with no completion information.

ServiceProgressData(String, String)

Reports progress with no completion information./// </summary>/// <param name="waitMessage"> </param>/// <param name="progressText">Message indicating current progress of the operation</param>/// <remarks>Threaded wait dialog will show marquee style progress bar because no detailed progress information is provided</remarks>

 ServiceProgressData(std::wstring const & waitMessage, std::wstring const & progressText = null);
public ServiceProgressData (string waitMessage, string progressText = default);
new Microsoft.VisualStudio.Shell.ServiceProgressData : string * string -> Microsoft.VisualStudio.Shell.ServiceProgressData
Public Sub New (waitMessage As String, Optional progressText As String = Nothing)

Parameters

waitMessage
String

The message to be displayed to the user.

progressText
String

The message that indicates the current progress of the operation.

Remarks

Threaded wait dialog will show marquee style progress bar because no detailed progress information is provided.

Applies to

ServiceProgressData(String, String, Int32, Int32)

Reports progress with no completion information.

public:
 ServiceProgressData(System::String ^ waitMessage, System::String ^ progressText, int currentStep, int totalSteps);
public:
 ServiceProgressData(Platform::String ^ waitMessage, Platform::String ^ progressText, int currentStep, int totalSteps);
 ServiceProgressData(std::wstring const & waitMessage, std::wstring const & progressText, int currentStep, int totalSteps);
public ServiceProgressData (string waitMessage, string progressText, int currentStep, int totalSteps);
new Microsoft.VisualStudio.Shell.ServiceProgressData : string * string * int * int -> Microsoft.VisualStudio.Shell.ServiceProgressData
Public Sub New (waitMessage As String, progressText As String, currentStep As Integer, totalSteps As Integer)

Parameters

waitMessage
String

The message to be displayed to the user.

progressText
String

The message that indicates the current progress of the operation.

currentStep
Int32

The number of the current step.

totalSteps
Int32

The number of total steps.

Remarks

Threaded wait dialog will show marquee style progress bar because no detailed progress information is provided.

Applies to