Catel.MVVM.CompositeCommand.GetCommands C# (CSharp) Метод

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

Gets the commands currently registered to this composite command.
public GetCommands ( ) : IEnumerable
Результат IEnumerable
        public IEnumerable<ICommand> GetCommands()
        {
            lock (_lock)
            {
                return (from command in _commandInfo
                        select command.Command).ToList();
            }
        }