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

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

public static GetOperationName ( this request ) : string
request this
Результат string
        public static string GetOperationName(this Microsoft.AspNetCore.Http.HttpRequest request)
        {
            var pathInfo = request.GetLastPathInfo();
            return GetOperationNameFromLastPathInfo(pathInfo);
        }
#endif