Search Results for

    Show / Hide Table of Contents

    Class ProgressEventArgs

    Encapsulates the data associated with cancellable progress events.

    Inheritance
    object
    EventArgs
    CancelEventArgs
    ProgressEventArgs
    Inherited Members
    CancelEventArgs.Cancel
    EventArgs.Empty
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: Sdl.LanguagePlatform.TranslationMemoryApi.Upgrade
    Assembly: Sdl.LanguagePlatform.TranslationMemoryApi.dll
    Syntax
    public class ProgressEventArgs : CancelEventArgs

    Constructors

    ProgressEventArgs(int)

    Creates a new ProgressEventArgs object and initializes it with the specified value.

    Declaration
    public ProgressEventArgs(int percentComplete)
    Parameters
    Type Name Description
    int percentComplete

    A value between 0 and 100.

    ProgressEventArgs(int, string)

    Creates a new ProgressEventArgs object and initializes it with the specified values.

    Declaration
    public ProgressEventArgs(int percentComplete, string infoMessage)
    Parameters
    Type Name Description
    int percentComplete

    A value between 0 and 100.

    string infoMessage

    The message, representing detailed information about the current operation.

    Properties

    InfoMessage

    Gets or sets a message representing detailed information about the current operation.

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

    PercentComplete

    Gets or sets the percentage.

    Declaration
    public int PercentComplete { get; set; }
    Property Value
    Type Description
    int
    In this article
    • Constructors
      • ProgressEventArgs(int)
      • ProgressEventArgs(int, string)
    • Properties
      • InfoMessage
      • PercentComplete
    Back to top Generated by DocFX