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