XElementExtensions.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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.XML
  7. {
  8. public static partial class XElementExtensions
  9. {
  10. public static double? GetDoubleValue(this XElement node)
  11. {
  12. if (node == null) return null;
  13. if (string.IsNullOrEmpty(node.Value)) return null;
  14. return double.Parse(node.Value);
  15. }
  16. public static DateTime? GetDateTimeValue(this XElement node)
  17. {
  18. if (node == null) return null;
  19. if (string.IsNullOrEmpty(node.Value)) return null;
  20. return DateTime.Parse(node.Value);
  21. }
  22. public static string GetTrimStringValue(this XElement node)
  23. {
  24. if (node == null) return string.Empty;
  25. return node.Value.Trim();
  26. }
  27. public static string GetStringValue(this XElement node)
  28. {
  29. if (node == null) return string.Empty;
  30. return node.Value;
  31. }
  32. public static List<string> GetStringListValue(this XElement node, char splitChar = ',')
  33. {
  34. var values = default(List<string>);
  35. if (node != default(XElement))
  36. {
  37. values = node.Value.Split(new char[] { splitChar }, StringSplitOptions.RemoveEmptyEntries).ToList();
  38. }
  39. return values;
  40. }
  41. public static decimal? GetDecimalValue(this XElement node)
  42. {
  43. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  44. if (string.IsNullOrEmpty(node.Value)) return null;
  45. return decimal.Parse(node.Value);
  46. }
  47. public static int? GetIntValue(this XElement node)
  48. {
  49. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  50. if (string.IsNullOrEmpty(node.Value)) return null;
  51. return int.Parse(node.Value);
  52. }
  53. public static long? GetLongValue(this XElement node)
  54. {
  55. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  56. if (string.IsNullOrEmpty(node.Value)) return null;
  57. return long.Parse(node.Value);
  58. }
  59. public static List<int> GetIntListValue(this XElement node, char splitChar = ',')
  60. {
  61. if (node == null || string.IsNullOrEmpty(node.Value)) return new List<int>();
  62. if (string.IsNullOrEmpty(node.Value)) return new List<int>();
  63. return node.Value.Split(splitChar).Select(x => int.Parse(x)).ToList();
  64. }
  65. public static Guid? GetGuidValue(this XElement node)
  66. {
  67. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  68. return Guid.Parse(node.Value);
  69. }
  70. public static List<Guid> GetGuidListValue(this XElement node, char splitChar = ',')
  71. {
  72. if (node == null || string.IsNullOrEmpty(node.Value)) return default(List<Guid>);
  73. return node.Value.Split(splitChar).Select(x => Guid.Parse(x)).ToList();
  74. }
  75. public static double? GetDoubleValue(this XAttribute node)
  76. {
  77. if (node == null) return null;
  78. if (string.IsNullOrEmpty(node.Value)) return null;
  79. return double.Parse(node.Value);
  80. }
  81. public static DateTime? GetDateTimeValue(this XAttribute node)
  82. {
  83. if (node == null) return null;
  84. if (string.IsNullOrEmpty(node.Value)) return null;
  85. return DateTime.Parse(node.Value);
  86. }
  87. public static string GetTrimStringValue(this XAttribute node)
  88. {
  89. if (node == null) return string.Empty;
  90. return node.Value.Trim();
  91. }
  92. public static string GetStringValue(this XAttribute node)
  93. {
  94. if (node == null) return string.Empty;
  95. return node.Value;
  96. }
  97. public static List<string> GetStringListValue(this XAttribute node, char splitChar = ',')
  98. {
  99. var values = default(List<string>);
  100. if (node != default(XAttribute))
  101. {
  102. values = node.Value.Split(new char[] { splitChar }, StringSplitOptions.RemoveEmptyEntries).ToList();
  103. }
  104. return values;
  105. }
  106. public static decimal? GetDecimalValue(this XAttribute node)
  107. {
  108. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  109. if (string.IsNullOrEmpty(node.Value)) return null;
  110. return decimal.Parse(node.Value);
  111. }
  112. public static int? GetIntValue(this XAttribute node)
  113. {
  114. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  115. if (string.IsNullOrEmpty(node.Value)) return null;
  116. return int.Parse(node.Value);
  117. }
  118. public static List<int> GetIntListValue(this XAttribute node, char splitChar = ',')
  119. {
  120. if (node == null || string.IsNullOrEmpty(node.Value)) return new List<int>();
  121. if (string.IsNullOrEmpty(node.Value)) return new List<int>();
  122. return node.Value.Split(splitChar).Select(x => int.Parse(x)).ToList();
  123. }
  124. public static Guid? GetGuidValue(this XAttribute node)
  125. {
  126. if (node == null || string.IsNullOrEmpty(node.Value)) return null;
  127. return Guid.Parse(node.Value);
  128. }
  129. public static List<Guid> GetGuidListValue(this XAttribute node, char splitChar = ',')
  130. {
  131. if (node == null || string.IsNullOrEmpty(node.Value)) return default(List<Guid>);
  132. return node.Value.Split(splitChar).Select(x => Guid.Parse(x)).ToList();
  133. }
  134. }
  135. }