diff --git a/Falcon.SugarApi/Falcon.SugarApi.csproj b/Falcon.SugarApi/Falcon.SugarApi.csproj
index 344fdfc..199e672 100644
--- a/Falcon.SugarApi/Falcon.SugarApi.csproj
+++ b/Falcon.SugarApi/Falcon.SugarApi.csproj
@@ -8,7 +8,7 @@
bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml
true
true
- 2.12.0
+ 2.13.0
diff --git a/Falcon.SugarApi/TypeExtend.cs b/Falcon.SugarApi/TypeExtend.cs
index a0d4f94..9d261be 100644
--- a/Falcon.SugarApi/TypeExtend.cs
+++ b/Falcon.SugarApi/TypeExtend.cs
@@ -1,6 +1,9 @@
using System;
using System.Diagnostics.CodeAnalysis;
+using System.IO;
+using System.Linq;
using System.Reflection;
+using System.Xml.Linq;
namespace Falcon.SugarApi
{
@@ -17,7 +20,7 @@ namespace Falcon.SugarApi
/// 属性
/// 定义的特性
/// 定义返回True,否则False
- public static bool TryGetAttribute([NotNull] this PropertyInfo info, out T p) where T : Attribute {
+ public static bool TryGetAttribute([NotNull] this PropertyInfo info,out T p) where T : Attribute {
p = info.GetCustomAttribute();
return p != null;
}
@@ -29,9 +32,68 @@ namespace Falcon.SugarApi
/// 属性
/// 定义的特性
/// 定义返回True,否则False
- public static bool TryGetAttribute([NotNull] this Type info, out T p) where T : Attribute {
+ public static bool TryGetAttribute([NotNull] this Type info,out T p) where T : Attribute {
p = info.GetCustomAttribute();
return p != null;
}
+
+ ///
+ /// 获取类型的summary说明
+ ///
+ /// 类型
+ /// summary值,没有返回空字符串
+ ///
+ public static string? GetTypeSummary(this Type type) {
+ _ = type ?? throw new ArgumentNullException(nameof(type));
+ var assemblyName = type.Assembly.FullName;
+ if(assemblyName == null) {
+ return "";
+ }
+ var dllLocal = type.Assembly.Location;
+ var xmlLocal = $"{dllLocal.Substring(0,dllLocal.Length - 3)}xml";
+ if(!File.Exists(xmlLocal)) {
+ return "";
+ }
+ var xdoc = XDocument.Load(xmlLocal);
+ if(xdoc == null) {
+ return "";
+ }
+ var members = xdoc.Descendants("member");
+ var find = members.Where(a => a.Attribute("name")?.Value == $"T:{type.FullName}");
+ if(find.Any()) {
+ return find.First().Element("summary")?.Value?.Trim() ?? "";
+ }
+ return "";
+ }
+
+ ///
+ /// 获取属性的summary说明
+ ///
+ /// 属性
+ /// summary值,没有返回空字符串
+ ///
+ public static string GetPropertySummary(this PropertyInfo property) {
+ _ = property ?? throw new ArgumentNullException(nameof(property));
+ var type = property.ReflectedType;
+ if(type == null) {
+ return "";
+ }
+ var dllLocal = type.Assembly.Location;
+ var xmlLocal = $"{dllLocal.Substring(0,dllLocal.Length - 3)}xml";
+ if(!File.Exists(xmlLocal)) {
+ return "";
+ }
+ var xdoc = XDocument.Load(xmlLocal);
+ if(xdoc == null) {
+ return "";
+ }
+ var members = xdoc.Descendants("member");
+ var find = members.Where(a => a.Attribute("name")?.Value == $"P:{type.FullName}.{property.Name}");
+ if(find.Any()) {
+ return find.First().Element("summary")?.Value?.Trim() ?? "";
+ }
+ return "";
+ }
+
}
}