Ejemplo n.º 1
0
 public PartialDictionary()
 {
     _reference = null;
     IsLoaded   = true;
 }
Ejemplo n.º 2
0
 public PartialDictionary(ILoadPartialDictionary <TKey, TValue> reference, bool isLoaded)
 {
     _reference = reference;
     IsLoaded   = isLoaded;
 }
Ejemplo n.º 3
0
 protected PartialDictionary(SerializationInfo info, StreamingContext context) : base(info, context)
 {
     IsLoaded   = (bool)info.GetValue("IsLoaded", typeof(bool));
     _reference = (ILoadPartialDictionary <TKey, TValue>)info.GetValue("_reference", typeof(ILoadPartialDictionary <TKey, TValue>));
 }