3 writes to StatusDescription
System (1)
net\System\Net\HttpListenerResponse.cs (1)
277StatusDescription = HttpStatusDescription.Get(StatusCode);
System.ServiceModel (2)
System\ServiceModel\Channels\HttpChannelHelpers.cs (2)
3034this.listenerResponse.StatusDescription = message.ReasonPhrase; 3073listenerResponse.StatusDescription = statusDescription;
3 references to StatusDescription
System (3)
net\System\Net\HttpListenerResponse.cs (3)
523if (StatusDescription.Length>0) { 524byte[] statusDescriptionBytes = new byte[WebHeaderCollection.HeaderEncoding.GetByteCount(StatusDescription)]; 527WebHeaderCollection.HeaderEncoding.GetBytes(StatusDescription, 0, statusDescriptionBytes.Length, statusDescriptionBytes, 0);