public static void SetValue <T>(this ListTreeNode <JsonValue> node, string key, T value)
        {
            var f = new JsonFormatter();

            f.Serialize(value);
            var p     = Utf8String.From(key);
            var bytes = f.GetStoreBytes();

            node.SetValue(p, bytes);
        }