Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/10 02:48:19 (14 years ago)
Author:
swagner
Message:

Fixed persistence exceptions by restoring the reference on HeuristicLab.Persistence in HeuristicLab.Collections (#977)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableKeyedCollection.cs

    r3390 r3560  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
     26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2627
    2728namespace HeuristicLab.Collections {
     29  [StorableClass]
    2830  [Serializable]
    2931  public class ReadOnlyObservableKeyedCollection<TKey, TItem> : IObservableKeyedCollection<TKey, TItem> {
     32    [Storable]
    3033    protected IObservableKeyedCollection<TKey, TItem> collection;
    3134
     
    5255      RegisterEvents();
    5356    }
     57    [StorableConstructor]
     58    protected ReadOnlyObservableKeyedCollection(bool deserializing) { }
    5459    #endregion
    5560
     
    100105
    101106    #region Events
     107    [StorableHook(HookType.AfterDeserialization)]
    102108    protected void RegisterEvents() {
    103109      collection.ItemsAdded += new CollectionItemsChangedEventHandler<TItem>(collection_ItemsAdded);
Note: See TracChangeset for help on using the changeset viewer.