ServiceStack.HttpRequestExtensions.GetOperationName C# (CSharp) Méthode

GetOperationName() public static méthode

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