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

HandlePost() public method

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

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

            return action;
        }