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