Show / Hide Table of Contents

Class ProgressNotificationArgs

Encapsulate the progress notification data.

Inheritance
object
ProgressNotificationArgs
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Sartorius.SAF.Notification
Assembly: Sartorius.SAF.dll
Syntax
public class ProgressNotificationArgs

Constructors

View Source

ProgressNotificationArgs()

Creates a new instance of the ProgressNotificationArgs class.

Declaration
public ProgressNotificationArgs()
View Source

ProgressNotificationArgs(int)

Create and initialize a new instance of ProgressNotificationArgs class.

Declaration
public ProgressNotificationArgs(int endValue)
Parameters
Type Name Description
int endValue

A progress end value

View Source

ProgressNotificationArgs(int, int)

Create and initialize a new instance of ProgressNotificationArgs class.

Declaration
public ProgressNotificationArgs(int startValue, int endValue)
Parameters
Type Name Description
int startValue

A progress start value.

int endValue

A progress end value

Properties

View Source

CurrentValue

Gets or sets the current progress value.

Declaration
public int CurrentValue { get; set; }
Property Value
Type Description
int
View Source

EndValue

Gets or sets the end value of progress.

Declaration
public int EndValue { get; }
Property Value
Type Description
int
View Source

StartValue

Gets or sets the start value of progress.

Declaration
public int StartValue { get; }
Property Value
Type Description
int
View Source

Text

Gets or sets the progress text.

Declaration
public string Text { get; set; }
Property Value
Type Description
string

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX