IJsonPathValueSystem.cs 484 B

123456789101112131415161718
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace WebTest.JsonPath
  7. {
  8. public interface IJsonPathValueSystem
  9. {
  10. bool HasMember(object value, string member);
  11. object GetMemberValue(object value, string member);
  12. IEnumerable GetMembers(object value);
  13. bool IsObject(object value);
  14. bool IsArray(object value);
  15. bool IsPrimitive(object value);
  16. }
  17. }