public PersistentByteDictionaryValueCollection(PersistentDictionaryValueCollection <string, string> valueCollection)
 {
     this.valueCollection = valueCollection;
 }
Example #2
0
 public PersistentObjectDictionaryValueCollection(PersistentDictionaryValueCollection <string, PersistentBlob> valueCollection, Func <TValue, byte[]> valueEncoder, Func <byte[], TValue> valueDecoder)
 {
     this.valueCollection = valueCollection;
     this.valueEncoder    = valueEncoder;
     this.valueDecoder    = valueDecoder;
 }