Interface IDataProgressReportingService
Namespace: ArtOfTest.WebAii.Design.ProjectModel.Providers
Assembly: ArtOfTest.WebAii.Design.dll
Syntax
public interface IDataProgressReportingService : INotifyPropertyChanged
Properties
BusyText
Declaration
string BusyText { get; set; }
Property Value
System.String
|
IsIndeterminate
Declaration
bool IsIndeterminate { get; set; }
Property Value
System.Boolean
|
IsReporting
Declaration
bool IsReporting { get; set; }
Property Value
System.Boolean
|
OperationName
Declaration
string OperationName { get; set; }
Property Value
System.String
|
Progress
Declaration
int Progress { get; }
Property Value
System.Int32
|
TotalCount
Declaration
int TotalCount { get; set; }
Property Value
System.Int32
|
Methods
ReportProgress(Int32)
Declaration
void ReportProgress(int completedSoFar = 1)
Parameters
System.Int32
completedSoFar
|
Events
ProgressChanged
Declaration
event Action ProgressChanged
Event Type
System.Action
|
ReportingStateChanged
Declaration
event Action<bool> ReportingStateChanged
Event Type
System.Action<System.Boolean>
|