Esempio n. 1
0
 public RavenJObject(RavenJObject other)
 {
     Properties = new DictionaryWithParentSnapshot(other.comparer);
     foreach (var kv in other.Properties)
     {
         Properties.Add(kv);
     }
 }
Esempio n. 2
0
 public RavenJObject(IEnumerable <KeyValuePair <string, RavenJToken> > props)
 {
     Properties = new DictionaryWithParentSnapshot();
     foreach (var kv in props)
     {
         Properties.Add(kv);
     }
 }
Esempio n. 3
0
 public RavenJObject(RavenJObject other, IEqualityComparer <string> comparer)
 {
     Properties = new DictionaryWithParentSnapshot(comparer);
     foreach (var kv in other.Properties)
     {
         Properties.Add(kv);
     }
 }