Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableAttribute.cs
r13347 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 29 29 /// <summary> 30 30 /// Mark the member of a class to be considered by the <c>StorableSerializer</c>. 31 /// The class must be marked as <c>[StorableClass ]</c> and the31 /// The class must be marked as <c>[StorableClass("05FE6F11-87C6-435E-800A-166AFACCF5AC")]</c> and the 32 32 /// <c>StorableClassType</c> should be set to <c>MarkedOnly</c> for 33 33 /// this attribute to kick in. -
branches/PersistenceOverhaul/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableReflection.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 172 172 #endregion 173 173 174 #region [StorableClass ] helpers174 #region [StorableClass("BBAFAC35-1753-4FF2-8CD5-9D307C782287")] helpers 175 175 176 176 private static StorableClassAttribute GetStorableClassAttribute(Type type) { -
branches/PersistenceOverhaul/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableSerializer.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 33 33 /// <summary> 34 34 /// Intended for serialization of all custom classes. Classes should have the 35 /// <c>[StorableClass ]</c> attribute set. The default mode is to serialize35 /// <c>[StorableClass("FB71B522-2818-48CD-AF43-EB1E0C2D6504")]</c> attribute set. The default mode is to serialize 36 36 /// members with the <c>[Storable]</c> attribute set. Alternatively the 37 37 /// storable mode can be set to <c>AllFields</c>, <c>AllProperties</c> 38 38 /// or <c>AllFieldsAndAllProperties</c>. 39 39 /// </summary> 40 [StorableClass ]40 [StorableClass("FB71B522-2818-48CD-AF43-EB1E0C2D6504")] 41 41 public sealed class StorableSerializer : ICompositeSerializer { 42 42
Note: See TracChangeset
for help on using the changeset viewer.