-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathApiResponseContextExtensions.cs
56 lines (52 loc) · 2.47 KB
/
ApiResponseContextExtensions.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
using System;
using System.Diagnostics.CodeAnalysis;
using System.Net.Http.Json;
using System.Threading.Tasks;
using WebApiClientCore.Serialization;
namespace WebApiClientCore
{
/// <summary>
/// 提供ApiResponseContext的扩展
/// </summary>
public static class ApiResponseContextExtensions
{
/// <summary>
/// 使用Json反序列化响应内容为目标类型
/// </summary>
/// <param name="context"></param>
/// <param name="objType">目标类型</param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static async Task<object?> JsonDeserializeAsync(this ApiResponseContext context, Type objType)
{
var response = context.HttpContext.ResponseMessage;
if (response == null)
{
return objType.DefaultValue();
}
var content = response.Content;
var options = context.HttpContext.HttpApiOptions.JsonDeserializeOptions;
return await content.ReadFromJsonAsync(objType, options, context.RequestAborted);
}
/// <summary>
/// 使用Xml反序列化响应内容为目标类型
/// </summary>
/// <param name="context"></param>
/// <param name="objType">目标类型</param>
/// <returns></returns>
[RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
public static async Task<object?> XmlDeserializeAsync(this ApiResponseContext context, Type objType)
{
var response = context.HttpContext.ResponseMessage;
if (response == null)
{
return objType.DefaultValue();
}
var content = response.Content;
var options = context.HttpContext.HttpApiOptions.XmlDeserializeOptions;
var xml = await content.ReadAsStringAsync(context.RequestAborted).ConfigureAwait(false);
return XmlSerializer.Deserialize(xml, objType, options);
}
}
}