Ai
1 Star 0 Fork 0

波斯码/TopSdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BaseTopRequest.cs 2.29 KB
一键复制 编辑 原始数据 按行查看 历史
maxinglun 提交于 2023-09-12 08:21 +08:00 . 初版。
using System;
using System.Collections.Generic;
namespace Top.Api
{
/// <summary>
/// 基础TOP请求类,存放一些通用的请求参数。
/// </summary>
public abstract class BaseTopRequest<T> : ITopRequest<T> where T : TopResponse
{
/// <summary>
/// HTTP请求URL参数
/// </summary>
internal TopDictionary otherParams;
/// <summary>
/// HTTP请求头参数
/// </summary>
private TopDictionary headerParams;
/// <summary>
/// 请求目标AppKey
/// </summary>
private string targetAppKey;
/// <summary>
/// 批量API请求的用户授权码
/// </summary>
private string batchApiSession;
/// <summary>
/// API在批量调用中的顺序
/// </summary>
private int batchApiOrder;
public void AddOtherParameter(string key, string value)
{
if (this.otherParams == null)
{
this.otherParams = new TopDictionary();
}
this.otherParams.Add(key, value);
}
public void AddHeaderParameter(string key, string value)
{
GetHeaderParameters().Add(key, value);
}
public IDictionary<string, string> GetHeaderParameters()
{
if (this.headerParams == null)
{
this.headerParams = new TopDictionary();
}
return this.headerParams;
}
public string GetTargetAppKey()
{
return this.targetAppKey;
}
public void SetTargetAppKey(string targetAppKey)
{
this.targetAppKey = targetAppKey;
}
public string GetBatchApiSession()
{
return this.batchApiSession;
}
public void SetBatchApiSession(string session)
{
this.batchApiSession = session;
}
public int GetBatchApiOrder()
{
return this.batchApiOrder;
}
public void SetBatchApiOrder(int order)
{
this.batchApiOrder = order;
}
public abstract string GetApiName();
public abstract void Validate();
public abstract IDictionary<string, string> GetParameters();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/bosima/TopSdk.git
git@gitee.com:bosima/TopSdk.git
bosima
TopSdk
TopSdk
main

搜索帮助