Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlFormat.cs @ 3606

Last change on this file since 3606 was 3036, checked in by epitzer, 15 years ago

make most serializers internal and complete API documentation (#548)

File size: 586 bytes
Line 
1using HeuristicLab.Persistence.Interfaces;
2using HeuristicLab.Persistence.Core;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
5namespace HeuristicLab.Persistence.Default.Xml {
6
7  /// <summary>
8  /// A simple XML format, that can be used to either stream
9  /// or save to a file.
10  /// </summary>
11  [StorableClass]
12  public class XmlFormat : FormatBase<XmlString> {
13    /// <summary>
14    /// Gets the format's name.
15    /// </summary>
16    /// <value>The format's name.</value>
17    public override string Name { get { return "XML"; } }
18  }
19
20}
Note: See TracBrowser for help on using the repository browser.