public PersistentByteDictionaryKeyCollection(PersistentDictionaryKeyCollection <string, string> keyCollection)
 {
     this.keyCollection = keyCollection;
 }
Beispiel #2
0
 public PersistentObjectDictionaryKeyCollection(PersistentDictionaryKeyCollection <string, PersistentBlob> keyCollection, Func <TKey, byte[]> keyEncoder, Func <byte[], TKey> keyDecoder)
 {
     this.keyCollection = keyCollection;
     this.keyEncoder    = keyEncoder;
     this.keyDecoder    = keyDecoder;
 }