From 0e8fddb81113a16689bb5c26a5844cb0c1260cec Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 29 Nov 2014 18:36:54 +0000 Subject: WinGui: Part 1 - Restructuring the AppServices library in preparation for the new JSON API. Taking the opportunity to improve and simplify the API. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6568 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../EventArgs/EncodeCompletedEventArgs.cs | 70 ---------------------- 1 file changed, 70 deletions(-) delete mode 100644 win/CS/HandBrake.ApplicationServices/EventArgs/EncodeCompletedEventArgs.cs (limited to 'win/CS/HandBrake.ApplicationServices/EventArgs/EncodeCompletedEventArgs.cs') diff --git a/win/CS/HandBrake.ApplicationServices/EventArgs/EncodeCompletedEventArgs.cs b/win/CS/HandBrake.ApplicationServices/EventArgs/EncodeCompletedEventArgs.cs deleted file mode 100644 index 2bbb7ab97..000000000 --- a/win/CS/HandBrake.ApplicationServices/EventArgs/EncodeCompletedEventArgs.cs +++ /dev/null @@ -1,70 +0,0 @@ -// -------------------------------------------------------------------------------------------------------------------- -// -// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. -// -// -// Encode Progress Event Args -// -// -------------------------------------------------------------------------------------------------------------------- - -namespace HandBrake.ApplicationServices.EventArgs -{ - using System; - using System.Runtime.Serialization; - - using HandBrake.ApplicationServices.Model; - - /// - /// Encode Progress Event Args - /// - [DataContractAttribute] - public class EncodeCompletedEventArgs : EventArgs - { - /// - /// Initializes a new instance of the class. - /// - /// - /// The sucessful. - /// - /// - /// The exception. - /// - /// - /// The error information. - /// - /// - /// The filename. - /// - public EncodeCompletedEventArgs(bool sucessful, Exception exception, string errorInformation, string filename) - { - this.Successful = sucessful; - this.Exception = exception; - this.ErrorInformation = errorInformation; - this.FileName = filename; - } - - /// - /// Gets or sets the file name. - /// - [DataMember] - public string FileName { get; set; } - - /// - /// Gets or sets a value indicating whether Successful. - /// - [DataMember] - public bool Successful { get; set; } - - /// - /// Gets or sets Exception. - /// - [DataMember] - public Exception Exception { get; set; } - - /// - /// Gets or sets ErrorInformation. - /// - [DataMember] - public string ErrorInformation { get; set; } - } -} -- cgit v1.2.3