XmlExtensions.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. namespace Bowin.Common.Linq
  7. {
  8. public static class XmlExtensions
  9. {
  10. public static string ValueOrDefault(this XElement xele, string DefaultValue)
  11. {
  12. string result = "";
  13. if (xele != null)
  14. result = xele.Value;
  15. else
  16. result = DefaultValue;
  17. return result;
  18. }
  19. public static string ValueOrDefault(this XElement xele)
  20. {
  21. return xele.ValueOrDefault("");
  22. }
  23. public static string ValueOrDefault(this XAttribute xele, string DefaultValue)
  24. {
  25. string result = "";
  26. if (xele != null)
  27. result = xele.Value;
  28. else
  29. result = DefaultValue;
  30. return result;
  31. }
  32. public static string ValueOrDefault(this XAttribute xele)
  33. {
  34. return xele.ValueOrDefault("");
  35. }
  36. }
  37. }