JsonElement
using System;
namespace AngleSharp.Html.Submitters.Json
{
internal abstract class JsonElement
{
public virtual JsonElement this[string key] {
get {
throw new InvalidOperationException();
}
set {
throw new InvalidOperationException();
}
}
}
}