-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathApiActionDescriptor.cs
62 lines (52 loc) · 1.9 KB
/
ApiActionDescriptor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
namespace WebApiClientCore
{
/// <summary>
/// 表示Action描述
/// </summary>
public abstract class ApiActionDescriptor
{
/// <summary>
/// 获取所在接口类型
/// 这个值不一定是声明方法的接口类型
/// </summary>
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)]
public abstract Type InterfaceType { get; protected set; }
/// <summary>
/// 获取Api名称
/// </summary>
public abstract string Name { get; protected set; }
/// <summary>
/// 获取关联的方法信息
/// </summary>
public abstract MethodInfo Member { get; protected set; }
/// <summary>
/// 获取Api关联的缓存特性
/// </summary>
public abstract IApiCacheAttribute? CacheAttribute { get; protected set; }
/// <summary>
/// 获取Api关联的特性
/// </summary>
public abstract IReadOnlyList<IApiActionAttribute> Attributes { get; protected set; }
/// <summary>
/// 获取Api关联的过滤器特性
/// </summary>
public abstract IReadOnlyList<IApiFilterAttribute> FilterAttributes { get; protected set; }
/// <summary>
/// 获取Api的参数描述
/// </summary>
public abstract IReadOnlyList<ApiParameterDescriptor> Parameters { get; protected set; }
/// <summary>
/// 获取Api的返回描述
/// </summary>
public abstract ApiReturnDescriptor Return { get; protected set; }
/// <summary>
/// 获取自定义数据存储的字典
/// </summary>
public abstract ConcurrentDictionary<object, object?> Properties { get; protected set; }
}
}