ServiceStack.MetadataFeature.ProcessRequest C# (CSharp) Метод

ProcessRequest() публичный Метод

public ProcessRequest ( string httpMethod, string pathInfo, string filePath ) : IHttpHandler
httpMethod string
pathInfo string
filePath string
Результат IHttpHandler
        public IHttpHandler ProcessRequest(string httpMethod, string pathInfo, string filePath)
        {
            var pathParts = pathInfo.TrimStart('/').Split('/');
            if (pathParts.Length == 0) return null;
            return GetHandlerForPathParts(pathParts);
        }