日期:2014-05-17 浏览次数:20451 次
[Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public HttpResponse Response
{
get
{
HttpResponse response = null;
if ((this._context != null) && !this._hideRequestResponse)
{
response = this._context.Response;
}
if (response == null)
{
throw new HttpException(SR.GetString("Response_not_available"));
}
return response;
}
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), Browsable(false)]
public HttpContext Context
{
get
{
if (this._context == null)
{
return this._initContext;
}
return this._context;
}
}