NuDeploy.CommandLine.Commands.ConsoleCommandProvider.ConsoleCommandProvider C# (CSharp) Метод

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

public ConsoleCommandProvider ( IEnumerable commands ) : System
commands IEnumerable
Результат System
        public ConsoleCommandProvider(IEnumerable<ICommand> commands)
        {
            if (commands == null)
            {
                throw new ArgumentNullException("commands");
            }

            this.commands = commands.ToList();
        }

Same methods

ConsoleCommandProvider::ConsoleCommandProvider ( InstallationStatusCommand installationStatus, InstallCommand install, UninstallCommand uninstall, CleanupCommand cleanup, PackageSolutionCommand packageSolution, PackageBuildOutputCommand packageBuildOutput, RepositorySourceConfigurationCommand configureSources, PublishingTargetConfigurationCommand configurePublishingTargets, SelfUpdateCommand selfUpdate, PublishCommand publishCommand, IHelpCommand helpCommand ) : System