ServiceStack.HttpRequestExtensions.GetOperationName C# (CSharp) Method

GetOperationName() public static method

public static GetOperationName ( this request ) : string
request this
return string
        public static string GetOperationName(this Microsoft.AspNetCore.Http.HttpRequest request)
        {
            var pathInfo = request.GetLastPathInfo();
            return GetOperationNameFromLastPathInfo(pathInfo);
        }
#endif