// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the EncodeCompletedEventArgs type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.EventArgs { using System; /// /// Encode Completed Event Args /// public class EncodeCompletedEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// /// /// The error. /// public EncodeCompletedEventArgs(bool error) { this.Error = error; } /// /// Gets a value indicating whether an error occurred during the encode. /// public bool Error { get; private set; } } }