ServiceStack.UrlExtensions.ToDeleteUrl C# (CSharp) Метод

ToDeleteUrl() публичный статический Метод

public static ToDeleteUrl ( this requestDto ) : string
requestDto this
Результат string
        public static string ToDeleteUrl(this object requestDto)
        {
            return requestDto.ToUrl(HttpMethods.Delete, formatFallbackToPredefinedRoute:"json");
        }