ServiceProgressData Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ServiceProgressData(String, String) |
Signale la progression sans informations d’achèvement. |
ServiceProgressData(String, String, Int32, Int32) |
Signaler la progression avec des informations d’achèvement. |
ServiceProgressData(String, String)
Signale la progression sans informations d’achèvement.
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)
Paramètres
- waitMessage
- String
Message à afficher pour l’utilisateur.
- progressText
- String
Message indiquant la progression actuelle de l’opération.
Remarques
La boîte de dialogue d’attente avec thread affiche la barre de progression du style de marque, car aucune information détaillée sur la progression n’est fournie.
S’applique à
ServiceProgressData(String, String, Int32, Int32)
Signaler la progression avec des informations d’achèvement.
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)
Paramètres
- waitMessage
- String
Message à afficher pour l’utilisateur.
- progressText
- String
Message indiquant la progression actuelle de l’opération.
- currentStep
- Int32
Étape actuelle de la progression.
- totalSteps
- Int32
Nombre total d’étapes disponibles.
Remarques
La boîte de dialogue d’attente avec thread affiche la barre de progression du style de marque, car aucune information détaillée sur la progression n’est fournie.