Example #1
0
        public List <string> GetActionLogSummary()
        {
            List <string> output = new List <string>();

            if (this.ActionLogs != null)
            {
                ActionLogs.ToList().ForEach((a) =>
                {
                    output.Add(a.Command + " : " + (a.Result != null ? a.Result : ""));
                });
            }

            return(output);
        }