mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
78 lines
3.0 KiB
C#
78 lines
3.0 KiB
C#
using System;
|
||
using System.Reflection;
|
||
|
||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
|
||
{
|
||
/// <summary>
|
||
/// 一个用于构造 <see cref="WechatTenpayClient"/> 时使用的配置项。
|
||
/// </summary>
|
||
public class WechatTenpayClientOptions
|
||
{
|
||
/// <summary>
|
||
/// 获取或设置请求超时时间(单位:毫秒)。
|
||
/// <para>默认值:30000</para>
|
||
/// </summary>
|
||
public int Timeout { get; set; } = 30 * 1000;
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信支付 API 域名。
|
||
/// <para>默认值:<see cref="WechatTenpayEndpoints.DEFAULT"/></para>
|
||
/// </summary>
|
||
public string Endpoints { get; set; } = WechatTenpayEndpoints.DEFAULT;
|
||
|
||
/// <summary>
|
||
/// 获取或设置声明应答中的错误描述使用的自然语言语种。
|
||
/// <para>默认值:<i>根据操作系统自动生成</i></para>
|
||
/// </summary>
|
||
public string UserAgent { get; set; } = $"OS/{Environment.OSVersion.Platform} SKIT.FlurlHttpClient.Wechat.Tenpay/{Assembly.GetExecutingAssembly().GetName().Version}";
|
||
|
||
/// <summary>
|
||
/// 获取或设置声明应答中的错误描述使用的自然语言语种。
|
||
/// <para>默认值:zh_CN</para>
|
||
/// </summary>
|
||
public string AcceptLanguage { get; set; } = "zh-CN";
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信支付 API 签名认证方式。
|
||
/// <para>默认值:<see cref="Constants.SignAlgorithms.WECHATPAY2_SHA256_RSA2048"/></para>
|
||
/// </summary>
|
||
public string SignAlgorithm { get; set; } = Constants.SignAlgorithms.WECHATPAY2_SHA256_RSA2048;
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信商户号。
|
||
/// </summary>
|
||
public string MerchantId { get; set; } = default!;
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信商户 API v3 密钥(注意与 API 密钥相区分)。
|
||
/// </summary>
|
||
public string MerchantV3Secret { get; set; } = default!;
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信商户 API 证书序列号。
|
||
/// </summary>
|
||
public string MerchantCertSerialNumber { get; set; } = default!;
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信商户 API 证书私钥。
|
||
/// </summary>
|
||
public string MerchantCertPrivateKey { get; set; } = default!;
|
||
|
||
/// <summary>
|
||
/// 获取或设置是否自动加密请求中的敏感字段数据。
|
||
/// </summary>
|
||
public bool AutoEncryptRequestSensitiveProperty { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获取或设置是否自动解密请求中的敏感字段数据。
|
||
/// </summary>
|
||
public bool AutoDecryptResponseSensitiveProperty { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获取或设置微信商户平台证书管理器。
|
||
/// <para>默认值:<see cref="Settings.InMemoryCertificateManager"/></para>
|
||
/// </summary>
|
||
public Settings.CertificateManager CertificateManager { get; set; } = new Settings.InMemoryCertificateManager();
|
||
}
|
||
}
|