Exemplo n.º 1
0
 public MRoot(MRoot other)
     : this(other?.Context?.Data ?? FLSlice.Null,
            other?.IsMutable == true)
 {
 }
Exemplo n.º 2
0
 public static object AsObject(FLSlice fleeceData, bool mutableContainers = true)
 {
     using (var root = new MRoot(fleeceData, mutableContainers)) {
         return(root.AsObject());
     }
 }
Exemplo n.º 3
0
 public MRoot(MRoot other)
     : this(other?.Context?.Data ?? FLSlice.Null,
            other?.Context != null ? other.Context.SharedKeys : null,
            other?.IsMutable == true)
 {
 }