-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathApiRequestContext.cs
55 lines (49 loc) · 1.69 KB
/
ApiRequestContext.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
using System;
using System.ComponentModel;
using System.Diagnostics;
namespace WebApiClientCore
{
/// <summary>
/// 表示Api请求的上下文
/// </summary>
public class ApiRequestContext
{
/// <summary>
/// 获取 http 上下文
/// </summary>
public HttpContext HttpContext { get; }
/// <summary>
/// 获取关联的ApiAction描述
/// </summary>
public ApiActionDescriptor ActionDescriptor { get; }
/// <summary>
/// 获取关联的ApiAction描述
/// </summary>
[Obsolete("Use ActionDescriptor instead")]
[EditorBrowsable(EditorBrowsableState.Never)]
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
public ApiActionDescriptor ApiAction => this.ActionDescriptor;
/// <summary>
/// 获取请求参数值
/// </summary>
public object?[] Arguments { get; }
/// <summary>
/// 获取自定义数据的存储和访问容器
/// </summary>
public IDataCollection Properties { get; }
/// <summary>
/// 请求Api的上下文
/// </summary>
/// <param name="httpContext"></param>
/// <param name="actionDescriptor"></param>
/// <param name="arguments"></param>
/// <param name="properties"></param>
public ApiRequestContext(HttpContext httpContext, ApiActionDescriptor actionDescriptor, object?[] arguments, IDataCollection properties)
{
this.HttpContext = httpContext;
this.ActionDescriptor = actionDescriptor;
this.Arguments = arguments;
this.Properties = properties;
}
}
}