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