Ejemplo n.º 1
0
        public static (string areaName, string pagePath, string handlerName) GetAreaPageHandler(this CompiledPageActionDescriptor compiledPageActionDescriptor)
        {
            var area    = compiledPageActionDescriptor.AreaName;
            var vePath  = compiledPageActionDescriptor.ViewEnginePath;
            var handler = compiledPageActionDescriptor.HandlerTypeInfo.Name;

            return(area, vePath, handler);
        }
Ejemplo n.º 2
0
 public static CompiledPageActionDescriptorDebugObject GetDebugObject(this CompiledPageActionDescriptor compiledPageActionDescriptor) => new CompiledPageActionDescriptorDebugObject(compiledPageActionDescriptor);