Search Results for

    Show / Hide Table of Contents

    Class BatchExportedEventArgs

    Encapsulates data sent with events published by BatchExported.

    Inheritance
    object
    EventArgs
    CancelEventArgs
    BatchExportedEventArgs
    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
    Assembly: Sdl.LanguagePlatform.TranslationMemoryApi.dll
    Syntax
    public class BatchExportedEventArgs : CancelEventArgs

    Constructors

    BatchExportedEventArgs(int, int)

    Instantiates a new event data object.

    Declaration
    public BatchExportedEventArgs(int totalProcessed, int totalExported)
    Parameters
    Type Name Description
    int totalProcessed

    The total number of processed translation units

    int totalExported

    The total number of exported translation units

    Properties

    TotalExported

    The total number of exported translation units. This is usually equivalent to TotalProcessed, but may be lower in case the export process uses filters.

    Declaration
    public int TotalExported { get; }
    Property Value
    Type Description
    int

    TotalProcessed

    The total number of processed translation units. This is usually equivalent to TotalExported, but if the export process uses filters, the number of processed translation units may be lower.

    Declaration
    public int TotalProcessed { get; }
    Property Value
    Type Description
    int
    In this article
    • Constructors
      • BatchExportedEventArgs(int, int)
    • Properties
      • TotalExported
      • TotalProcessed
    Back to top Generated by DocFX