aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/HttpListenerResponse.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-15 13:40:38 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-15 13:40:38 -0400
commit7b6f07b2602e33fe68969d78ac2f4ac76dafbc9c (patch)
tree1cd120d6bd0fe2c9d1168b1504fcc8cf6f198995 /SocketHttpListener/Net/HttpListenerResponse.cs
parenta4c25b4bb89d74d739f7317871b27716484ee229 (diff)
update methods
Diffstat (limited to 'SocketHttpListener/Net/HttpListenerResponse.cs')
-rw-r--r--SocketHttpListener/Net/HttpListenerResponse.cs29
1 files changed, 16 insertions, 13 deletions
diff --git a/SocketHttpListener/Net/HttpListenerResponse.cs b/SocketHttpListener/Net/HttpListenerResponse.cs
index 240c67930..fc57e8485 100644
--- a/SocketHttpListener/Net/HttpListenerResponse.cs
+++ b/SocketHttpListener/Net/HttpListenerResponse.cs
@@ -25,14 +25,14 @@ namespace SocketHttpListener.Net
public WebHeaderCollection Headers
{
- get => _webHeaders;
+ get { return _webHeaders; }
}
public Encoding ContentEncoding { get; set; }
public string ContentType
{
- get => Headers["Content-Type"];
+ get { return Headers["Content-Type"]; }
set
{
CheckDisposed();
@@ -47,13 +47,13 @@ namespace SocketHttpListener.Net
}
}
- private HttpListenerContext HttpListenerContext => _httpContext;
+ private HttpListenerContext HttpListenerContext { get { return _httpContext; } }
- private HttpListenerRequest HttpListenerRequest => HttpListenerContext.Request;
+ private HttpListenerRequest HttpListenerRequest { get { return HttpListenerContext.Request; } }
internal EntitySendFormat EntitySendFormat
{
- get => (EntitySendFormat)_boundaryType;
+ get { return (EntitySendFormat)_boundaryType; }
set
{
CheckDisposed();
@@ -72,8 +72,8 @@ namespace SocketHttpListener.Net
public bool SendChunked
{
- get => EntitySendFormat == EntitySendFormat.Chunked;
- set => EntitySendFormat = value ? EntitySendFormat.Chunked : EntitySendFormat.ContentLength;
+ get { return EntitySendFormat == EntitySendFormat.Chunked; ; }
+ set { EntitySendFormat = value ? EntitySendFormat.Chunked : EntitySendFormat.ContentLength; }
}
// We MUST NOT send message-body when we send responses with these Status codes
@@ -93,7 +93,7 @@ namespace SocketHttpListener.Net
public long ContentLength64
{
- get => _contentLength;
+ get { return _contentLength; }
set
{
CheckDisposed();
@@ -112,13 +112,13 @@ namespace SocketHttpListener.Net
public CookieCollection Cookies
{
- get => _cookies ?? (_cookies = new CookieCollection());
- set => _cookies = value;
+ get { return _cookies ?? (_cookies = new CookieCollection()); }
+ set { _cookies = value; }
}
public bool KeepAlive
{
- get => _keepAlive;
+ get { return _keepAlive; }
set
{
CheckDisposed();
@@ -138,7 +138,7 @@ namespace SocketHttpListener.Net
public string RedirectLocation
{
- get => Headers["Location"];
+ get { return Headers["Location"]; }
set
{
// note that this doesn't set the status code to a redirect one
@@ -281,7 +281,10 @@ namespace SocketHttpListener.Net
//}
}
- void IDisposable.Dispose() => Dispose();
+ void IDisposable.Dispose()
+ {
+ Dispose();
+ }
private void CheckDisposed()
{