summaryrefslogtreecommitdiffstats
path: root/win/CS
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-01-25 19:37:03 +0000
committersr55 <[email protected]>2015-01-25 19:37:03 +0000
commit2f061ec629aaf35dd2e119a859da0cb6c29b0ca3 (patch)
tree0d700e15d98bbf9837453e0a4175328ffade2b09 /win/CS
parentee19e2a5fddf59289e9a22413f2ad27cd3236c7c (diff)
WinGui: Add XmlIgnore attribute to the Titles collection of the ScannedSource object to reduce the size of the Queue Exports.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6814 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/Scan/Model/Source.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Scan/Model/Source.cs b/win/CS/HandBrake.ApplicationServices/Services/Scan/Model/Source.cs
index 725c52c91..b1418d543 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/Scan/Model/Source.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/Scan/Model/Source.cs
@@ -12,6 +12,7 @@ namespace HandBrake.ApplicationServices.Services.Scan.Model
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
+ using System.Xml.Serialization;
/// <summary>
/// An object representing a scanned DVD
@@ -39,6 +40,7 @@ namespace HandBrake.ApplicationServices.Services.Scan.Model
/// Gets or sets Titles. A list of titles from the source
/// </summary>
[DataMember]
+ [XmlIgnore]
public List<Title> Titles { get; set; }
/// <summary>