Extension.Validate.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //using Microsoft.AspNetCore.Http;
  2. namespace Extensions
  3. {
  4. public static partial class Extensions
  5. {
  6. public static bool IsEmpty(this object value)
  7. {
  8. if (value != null && !string.IsNullOrEmpty(value.ParseToString()))
  9. {
  10. return false;
  11. }
  12. else
  13. {
  14. return true;
  15. }
  16. }
  17. public static bool IsNotEmpty(this object value)
  18. {
  19. return !IsEmpty(value);
  20. }
  21. public static bool IsNullOrZero(this object value)
  22. {
  23. if (value == null || value.ParseToString().Trim() == "0")
  24. {
  25. return true;
  26. }
  27. else
  28. {
  29. return false;
  30. }
  31. }
  32. //public static bool IsAjaxRequest(this HttpRequest request)
  33. //{
  34. // if (request == null)
  35. // throw new ArgumentNullException("request");
  36. // if (request.Headers != null)
  37. // return request.Headers["X-Requested-With"] == "XMLHttpRequest";
  38. // return false;
  39. //}
  40. }
  41. }