Ignore:
Timestamp:
Feb 27, 2023, 9:37:08 PM (21 months ago)
Author:
alloc
Message:

Added HTTP method to RequestContext

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/RequestContext.cs

    r391 r415  
    22
    33namespace Webserver {
     4        public enum ERequestMethod {
     5                Other,
     6                // ReSharper disable InconsistentNaming
     7                GET,
     8                PUT,
     9                POST,
     10                DELETE,
     11                HEAD,
     12                OPTIONS,
     13                // ReSharper restore InconsistentNaming
     14                Count
     15        }
     16       
    417        public class RequestContext {
    518                public string RequestPath;
     19                public readonly ERequestMethod Method;
    620                public readonly HttpListenerRequest Request;
    721                public readonly HttpListenerResponse Response;
     
    1529                        Connection = _connection;
    1630                        PermissionLevel = _permissionLevel;
     31                        Method = _request.HttpMethod switch {
     32                                "GET" => ERequestMethod.GET,
     33                                "PUT" => ERequestMethod.PUT,
     34                                "POST" => ERequestMethod.POST,
     35                                "DELETE" => ERequestMethod.DELETE,
     36                                "HEAD" => ERequestMethod.HEAD,
     37                                "OPTIONS" => ERequestMethod.OPTIONS,
     38                                _ => ERequestMethod.Other
     39                        };
    1740                }
    1841        }
Note: See TracChangeset for help on using the changeset viewer.