You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using com.alibaba.openapi.client.entity;
|
|
|
|
namespace com.alibaba.openapi.client
|
|
{
|
|
public class Response
|
|
{
|
|
private int statusCode;
|
|
|
|
public int StatusCode
|
|
{
|
|
get { return statusCode; }
|
|
set { statusCode = value; }
|
|
}
|
|
private Object result;
|
|
|
|
public Object Result
|
|
{
|
|
get { return result; }
|
|
set { result = value; }
|
|
}
|
|
private Exception exception;
|
|
|
|
public Exception Exception
|
|
{
|
|
get { return exception; }
|
|
set { exception = value; }
|
|
}
|
|
private String charset = "UTF-8";
|
|
|
|
public String Charset
|
|
{
|
|
get { return charset; }
|
|
set { charset = value; }
|
|
}
|
|
private String encoding;
|
|
|
|
public String Encoding
|
|
{
|
|
get { return encoding; }
|
|
set { encoding = value; }
|
|
}
|
|
|
|
private ResponseWrapper responseWrapper;
|
|
|
|
internal ResponseWrapper ResponseWrapper
|
|
{
|
|
get { return responseWrapper; }
|
|
set { responseWrapper = value; }
|
|
}
|
|
}
|
|
}
|
|
|