ServiceProgressData 构造函数

定义

重载

ServiceProgressData(String, String)

在没有完成信息的情况下报告进度。

ServiceProgressData(String, String, Int32, Int32)

使用完成信息报告进度。

ServiceProgressData(String, String)

在没有完成信息的情况下报告进度。

 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)

参数

waitMessage
String

要向用户显示的消息。

progressText
String

指示操作当前进度的消息。

注解

线程等待对话框将显示选择样式进度栏,因为未提供详细的进度信息。

适用于

ServiceProgressData(String, String, Int32, Int32)

使用完成信息报告进度。

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)

参数

waitMessage
String

要向用户显示的消息。

progressText
String

指示操作当前进度的消息。

currentStep
Int32

进度中的当前步骤。

totalSteps
Int32

可用步骤总数。

注解

线程等待对话框将显示选择样式进度栏,因为未提供详细的进度信息。

适用于