ServiceStack.HttpRequestExtensions.GetLastPathInfo C# (CSharp) Метод

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

public static GetLastPathInfo ( this request ) : string
request this
Результат string
        public static string GetLastPathInfo(this Microsoft.AspNetCore.Http.HttpRequest request)
        {
            var rawUrl = Microsoft.AspNetCore.Http.Extensions.UriHelper.GetDisplayUrl(request);
            return GetLastPathInfoFromRawUrl(rawUrl);
        }