8 writes to StatusDescription
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
301context.Response.StatusDescription = CoreChannel.GetResourceString("Remoting_InternalError");
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
897this.context.Response.StatusDescription = statusDescription;
System.Web (3)
Abstractions\HttpResponseWrapper.cs (1)
209_httpResponse.StatusDescription = value;
HttpResponse.cs (2)
1132StatusDescription = rawResponse.StatusDescription; 3052this.StatusDescription = descr;
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
722context.Response.StatusDescription = SR.ExceptionHttpHandlerImageNotFound;
System.Web.Extensions (2)
HttpResponseInternalWrapper.cs (1)
193_httpResponse.StatusDescription = value;
Script\Services\RestHandler.cs (1)
222context.Response.StatusDescription = HttpWorkerRequest.GetStatusDescription(statusCode);
6 references to StatusDescription
System.Web (5)
Abstractions\HttpResponseWrapper.cs (1)
206return _httpResponse.StatusDescription;
HttpResponse.cs (4)
528_wr.SendStatus(this.StatusCode, this.StatusDescription); 1480_wr.SendStatus(_statusCode, _subStatusCode, this.StatusDescription); 3035return this.StatusCode.ToString(NumberFormatInfo.InvariantInfo) + " " + this.StatusDescription; 3400_wr.SendStatus(this.StatusCode, this.SubStatusCode, this.StatusDescription);
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
190return _httpResponse.StatusDescription;