SenseNet.ApplicationModel.ListActionsScenario.CollectActions C# (CSharp) Метод

CollectActions() защищенный Метод

protected CollectActions ( Content context, string backUrl ) : IEnumerable
context Content
backUrl string
Результат IEnumerable
        protected override IEnumerable<ActionBase> CollectActions(Content context, string backUrl)
        {
            var actList = base.CollectActions(context, backUrl).ToList();

            //if (context == null)
            //    return actList;

            //if (TrashBin.IsInTrash(context.ContentHandler as GenericContent))
            //    return actList;

            //var actWd = ActionFramework.GetAction("ClientAction", context, backUrl, null) as ClientAction;

            //if (actWd != null)
            //{
            //    actWd.MethodName = "BrowseFolder";
            //    actWd.ParameterList = string.Format(@"""{0}""", context.Path);
            //    actWd.Text = "Open in Windows Explorer";
            //    actWd.Icon = new ActionIcon { IconName = "folder" };
            //    actList.Add(actWd);
            //}

            return actList;
        }
    }
ListActionsScenario