1 write to listenerResponse
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
2915this.listenerResponse = listenerResponse;
16 references to listenerResponse
System.ServiceModel (16)
System\ServiceModel\Channels\HttpChannelHelpers.cs (16)
2935listenerResponse.Abort(); 2941listenerResponse.Headers[HttpChannelUtilities.MIMEVersionHeader] = version; 2950string contentType = this.listenerResponse.ContentType; 2954if (contentType != this.listenerResponse.ContentType) 2972listenerResponse.SendChunked = false; 3017this.listenerResponse.KeepAlive = false; 3031this.listenerResponse.StatusCode = (int)message.StatusCode; 3034this.listenerResponse.StatusDescription = message.ReasonPhrase; 3043listenerResponse.AddHeader(name, value); 3047listenerResponse.AppendHeader(name, value); 3053listenerResponse.ContentType = contentType; 3058this.listenerResponse.AddHeader(HttpChannelUtilities.ContentEncodingHeader, contentEncoding); 3063listenerResponse.ContentLength64 = contentLength; 3068listenerResponse.StatusCode = (int)statusCode; 3073listenerResponse.StatusDescription = statusDescription; 3078return new ListenerResponseOutputStream(listenerResponse);