using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebTest.JsonPath { public interface IJsonPathValueSystem { bool HasMember(object value, string member); object GetMemberValue(object value, string member); IEnumerable GetMembers(object value); bool IsObject(object value); bool IsArray(object value); bool IsPrimitive(object value); } }