📄 httpappeventargs.cs
字号:
namespace Imps.Client.Core
{
using System;
using System.Net;
public class HttpAppEventArgs : EventArgs
{
private int _errorCode;
private string _errorMessage = string.Empty;
private int _httpStautsCode;
private string _responseBody = string.Empty;
private System.Net.WebException wEx;
public string ErrorMessage
{
get
{
return this._errorMessage;
}
set
{
this._errorMessage = value;
}
}
public int HttpStautsCode
{
get
{
return this._httpStautsCode;
}
internal set
{
this._httpStautsCode = value;
}
}
public int ProvisionErrorCode
{
get
{
return this._errorCode;
}
internal set
{
this._errorCode = value;
}
}
public string ResponseBody
{
get
{
return this._responseBody;
}
set
{
this._responseBody = value;
}
}
public System.Net.WebException WebException
{
get
{
return this.wEx;
}
set
{
this.wEx = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -