HA4IoT.Networking.Http.HttpRequestController.HandlePatch C# (CSharp) Method

HandlePatch() public method

public HandlePatch ( string uri ) : IHttpRequestDispatcherAction
uri string
return IHttpRequestDispatcherAction
        public IHttpRequestDispatcherAction HandlePatch(string uri)
        {
            if (uri == null) throw new ArgumentNullException(nameof(uri));

            var action = new HttpRequestDispatcherAction(HttpMethod.Patch, uri);
            _handlers.Add(action);

            return action;
        }