Esempio n. 1
0
        internal static T FromBlob <T>(this PersistentBlob value)
        {
            var bytes = value.GetBytes();
            var json  = bytes.FromZipBytes();

            return(json.FromJson <T>());
        }
Esempio n. 2
0
 private TValue DecodeValue(PersistentBlob value)
 {
     return(valueDecoder(value.GetBytes()));
 }