aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/EntitySendFormat.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-15 13:22:05 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-15 13:22:05 -0400
commitccb5b14d772c2d1028fa9003ee64fde3cd4196b3 (patch)
tree294a56f3d34ed3e921257ca124f7d2fa28f79d2e /SocketHttpListener/Net/EntitySendFormat.cs
parentb615a2aeb16a527fe56a88a352574d76e77783e8 (diff)
update series resolver
Diffstat (limited to 'SocketHttpListener/Net/EntitySendFormat.cs')
-rw-r--r--SocketHttpListener/Net/EntitySendFormat.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/SocketHttpListener/Net/EntitySendFormat.cs b/SocketHttpListener/Net/EntitySendFormat.cs
new file mode 100644
index 000000000..6e585bdc9
--- /dev/null
+++ b/SocketHttpListener/Net/EntitySendFormat.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SocketHttpListener.Net
+{
+ internal enum EntitySendFormat
+ {
+ ContentLength = 0, // Content-Length: XXX
+ Chunked = 1, // Transfer-Encoding: chunked
+ }
+}