ServiceStack.Text.WebRequestExtensions.DeleteFromUrl C# (CSharp) Méthode

DeleteFromUrl() public static méthode

public static DeleteFromUrl ( this url, string acceptContentType = "*/*", Action requestFilter = null, Action responseFilter = null ) : string
url this
acceptContentType string
requestFilter Action
responseFilter Action
Résultat string
        public static string DeleteFromUrl(this string url, string acceptContentType = "*/*",
            Action<HttpWebRequest> requestFilter = null, Action<HttpWebResponse> responseFilter = null)
        {
            return SendStringToUrl(url, method: "DELETE", acceptContentType: acceptContentType, requestFilter: requestFilter, responseFilter: responseFilter);
        }