Class ProgressNotificationArgs
Encapsulate the progress notification data.
Inheritance
System.Object
    ProgressNotificationArgs
  
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
    Namespace: Sartorius.SAF.Notification
Assembly: Sartorius.SAF.dll
Syntax
public class ProgressNotificationArgs
  Constructors
View SourceProgressNotificationArgs()
Creates a new instance of the ProgressNotificationArgs class.
Declaration
public ProgressNotificationArgs()
  ProgressNotificationArgs(Int32)
Create and initialize a new instance of ProgressNotificationArgs class.
Declaration
public ProgressNotificationArgs(int endValue)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | endValue | A progress end value  | 
      
ProgressNotificationArgs(Int32, Int32)
Create and initialize a new instance of ProgressNotificationArgs class.
Declaration
public ProgressNotificationArgs(int startValue, int endValue)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | startValue | A progress start value.  | 
      
| System.Int32 | endValue | A progress end value  | 
      
Properties
View SourceCurrentValue
Gets or sets the current progress value.
Declaration
public int CurrentValue { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
EndValue
Gets or sets the end value of progress.
Declaration
public int EndValue { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
StartValue
Gets or sets the start value of progress.
Declaration
public int StartValue { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
Text
Gets or sets the progress text.
Declaration
public string Text { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String |