像下面的代碼這樣獲取真累var totalCount = Convert.ToInt32(response.Headers.GetValues("X-TotalCount").FirstOrDefault());有沒有更簡單的方法?比如像Session那樣var totalCount = Session.GetInt32("TotalCount");
1 回答

慕萊塢森
TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊
public static class HttpResponseHeadersExtensions{ public static int GetInt32(this HttpResponseHeaders headers, string name) { return headers.TryGetValues(name, out var values) ? Convert.ToInt32(values.FirstOrDefault()) : 0; } }
使用
var totalCount = response.Headers.GetInt32("X-TotalCount");
- 1 回答
- 0 關(guān)注
- 610 瀏覽
添加回答
舉報(bào)
0/150
提交
取消