Show / Hide Table of Contents

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 Source

ProgressNotificationArgs()

Creates a new instance of the ProgressNotificationArgs class.

Declaration
public ProgressNotificationArgs()
View Source

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

View Source

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 Source

CurrentValue

Gets or sets the current progress value.

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

EndValue

Gets or sets the end value of progress.

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

StartValue

Gets or sets the start value of progress.

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

Text

Gets or sets the progress text.

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

Extension Methods

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