mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 12:56:28 +08:00
change String->string
This commit is contained in:
@@ -21,7 +21,7 @@ namespace SDKCSharp.Client
|
||||
{
|
||||
|
||||
private static OpenConfig DEFAULT_CONFIG = new OpenConfig();
|
||||
private const String ERROR_RESPONSE_KEY = "error_response";
|
||||
private const string ERROR_RESPONSE_KEY = "error_response";
|
||||
|
||||
private Dictionary<string, string> header = new Dictionary<string, string>();
|
||||
|
||||
@@ -122,7 +122,7 @@ namespace SDKCSharp.Client
|
||||
/// <param name="requestForm">请求内容</param>
|
||||
/// <param name="header">请求header</param>
|
||||
/// <returns>返回服务器响应内容</returns>
|
||||
protected virtual String DoExecute(String url, RequestForm requestForm, Dictionary<string, string> header)
|
||||
protected virtual string DoExecute(string url, RequestForm requestForm, Dictionary<string, string> header)
|
||||
{
|
||||
return openRequest.Request(this.url, requestForm, header);
|
||||
}
|
||||
|
Reference in New Issue
Block a user