-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathHttpApiProxyMethodAttribute.cs
60 lines (54 loc) · 1.77 KB
/
HttpApiProxyMethodAttribute.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
using System;
using System.ComponentModel;
namespace WebApiClientCore
{
/// <summary>
/// 表示HttpApi代理方法的特性
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public sealed class HttpApiProxyMethodAttribute : Attribute
{
/// <summary>
/// 获取索引值
/// </summary>
public int Index { get; } = -1;
/// <summary>
/// 获取名称
/// </summary>
public string Name { get; } = string.Empty;
/// <summary>
/// 获取方法所在的声明类型
/// </summary>
public Type? DeclaringType { get; }
/// <summary>
/// 方法的索引特性
/// </summary>
/// <param name="index">索引值</param>
[Obsolete("仅为了兼容v2.0.8的SourceGenerator语法")]
public HttpApiProxyMethodAttribute(int index)
{
}
/// <summary>
/// 方法的索引特性
/// </summary>
/// <param name="index">索引值</param>
/// <param name="name">方法的名称</param>
[Obsolete("仅为了兼容v2.0.9的SourceGenerator语法")]
public HttpApiProxyMethodAttribute(int index, string name)
{
}
/// <summary>
/// 方法的索引特性
/// </summary>
/// <param name="index">索引值</param>
/// <param name="name">方法的名称</param>
/// <param name="declaringType">法所在的声明类型</param>
public HttpApiProxyMethodAttribute(int index, string name, Type? declaringType)
{
this.Index = index;
this.Name = name;
this.DeclaringType = declaringType;
}
}
}