HA4IoT.Networking.Http.HttpRequestController.HandlePatch C# (CSharp) Méthode

HandlePatch() public méthode

public HandlePatch ( string uri ) : IHttpRequestDispatcherAction
uri string
Résultat 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;
        }