代码拉取完成,页面将自动刷新
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();
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。