Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/10 18:28:50 (15 years ago)
Author:
epitzer
Message:

Make StorableClass attribute compulsory for StorableSerializer to work, add named property StorableClassType to choose between Empty and MarkedOnly, later other options will be added. (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Core/Configuration.cs

    r1823 r2994  
    66namespace HeuristicLab.Persistence.Core {
    77
     8  [StorableClass(StorableClassType.MarkedOnly)]   
    89  public class Configuration {
    910
     
    1718    [Storable]
    1819    public IFormat Format { get; private set; }
    19 
     20   
    2021    private Configuration() {
    2122      compositeSerializerCache = new Dictionary<Type, ICompositeSerializer>();
Note: See TracChangeset for help on using the changeset viewer.