-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathApiParameterDescriptor.cs
43 lines (37 loc) · 1.22 KB
/
ApiParameterDescriptor.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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Reflection;
namespace WebApiClientCore
{
/// <summary>
/// 表示请求Api的参数描述
/// </summary>
public abstract class ApiParameterDescriptor
{
/// <summary>
/// 获取参数名称
/// </summary>
public abstract string Name { get; protected set; }
/// <summary>
/// 获取关联的参数信息
/// </summary>
public abstract ParameterInfo Member { get; protected set; }
/// <summary>
/// 获取参数索引
/// </summary>
public abstract int Index { get; protected set; }
/// <summary>
/// 获取参数类型
/// </summary>
public abstract Type ParameterType { get; protected set; }
/// <summary>
/// 获取关联的参数特性
/// </summary>
public abstract IReadOnlyList<IApiParameterAttribute> Attributes { get; protected set; }
/// <summary>
/// 获取关联的ValidationAttribute特性
/// </summary>
public abstract IReadOnlyList<ValidationAttribute> ValidationAttributes { get; protected set; }
}
}