mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
56 lines
1.9 KiB
C#
56 lines
1.9 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
|
||
namespace SKIT.FlurlHttpClient.Wechat.Ads
|
||
{
|
||
/// <summary>
|
||
/// 微信广告平台 API 响应的基类。
|
||
/// </summary>
|
||
public abstract class WechatAdsResponse : ICommonResponse
|
||
{
|
||
/// <summary>
|
||
/// 获取原始的 HTTP 响应状态码。
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonIgnore]
|
||
[System.Text.Json.Serialization.JsonIgnore]
|
||
public int RawStatus { get; internal set; }
|
||
|
||
/// <summary>
|
||
/// 获取原始的 HTTP 响应表头集合。
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonIgnore]
|
||
[System.Text.Json.Serialization.JsonIgnore]
|
||
public IDictionary<string, string> RawHeaders { get; internal set; } = default!;
|
||
|
||
/// <summary>
|
||
/// 获取原始的 HTTP 响应正文。
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonIgnore]
|
||
[System.Text.Json.Serialization.JsonIgnore]
|
||
public byte[] RawBytes { get; internal set; } = default!;
|
||
|
||
/// <summary>
|
||
/// 获取微信广告平台 API 返回的错误码。
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonProperty("errcode")]
|
||
[System.Text.Json.Serialization.JsonPropertyName("errcode")]
|
||
public virtual int ErrorCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获取微信广告平台 API 返回的错误描述。
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonProperty("errmsg")]
|
||
[System.Text.Json.Serialization.JsonPropertyName("errmsg")]
|
||
public virtual string? ErrorMessage { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获取一个值,该值指示调用微信广告平台 API 是否成功(即 HTTP 状态码为 200、且 errcode 值为 0)。
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public virtual bool IsSuccessful()
|
||
{
|
||
return RawStatus == 200 && ErrorCode == 0;
|
||
}
|
||
}
|
||
}
|