aboutsummaryrefslogtreecommitdiff
path: root/ServiceStack/HttpUtils.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-12 20:07:48 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-12 20:07:48 -0500
commit0a03d7ad9fe6554b78963445f012464023113614 (patch)
treedb7c353f9759d6d4259ee3fc017b569cba6f383c /ServiceStack/HttpUtils.cs
parenta6e7438987ebd0ef2c44940f76e6efd487803e02 (diff)
localization fixes
Diffstat (limited to 'ServiceStack/HttpUtils.cs')
-rw-r--r--ServiceStack/HttpUtils.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/ServiceStack/HttpUtils.cs b/ServiceStack/HttpUtils.cs
deleted file mode 100644
index 41d191d61..000000000
--- a/ServiceStack/HttpUtils.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-//Copyright (c) Service Stack LLC. All Rights Reserved.
-//License: https://raw.github.com/ServiceStack/ServiceStack/master/license.txt
-
-using System;
-using System.Collections.Generic;
-
-namespace ServiceStack
-{
- internal static class HttpMethods
- {
- static readonly string[] allVerbs = new[] {
- "OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "CONNECT", // RFC 2616
- "PROPFIND", "PROPPATCH", "MKCOL", "COPY", "MOVE", "LOCK", "UNLOCK", // RFC 2518
- "VERSION-CONTROL", "REPORT", "CHECKOUT", "CHECKIN", "UNCHECKOUT",
- "MKWORKSPACE", "UPDATE", "LABEL", "MERGE", "BASELINE-CONTROL", "MKACTIVITY", // RFC 3253
- "ORDERPATCH", // RFC 3648
- "ACL", // RFC 3744
- "PATCH", // https://datatracker.ietf.org/doc/draft-dusseault-http-patch/
- "SEARCH", // https://datatracker.ietf.org/doc/draft-reschke-webdav-search/
- "BCOPY", "BDELETE", "BMOVE", "BPROPFIND", "BPROPPATCH", "NOTIFY",
- "POLL", "SUBSCRIBE", "UNSUBSCRIBE" //MS Exchange WebDav: http://msdn.microsoft.com/en-us/library/aa142917.aspx
- };
-
- public static HashSet<string> AllVerbs = new HashSet<string>(allVerbs);
-
- public const string Get = "GET";
- public const string Put = "PUT";
- public const string Post = "POST";
- public const string Delete = "DELETE";
- public const string Options = "OPTIONS";
- public const string Head = "HEAD";
- public const string Patch = "PATCH";
- }
-}