Rebel.Cms.Web.Context.ConfigurationTaskContext.ConfigurationTaskContext C# (CSharp) Méthode

ConfigurationTaskContext() public méthode

public ConfigurationTaskContext ( IRebelApplicationContext applicationContext, IEnumerable parameters, ITask task ) : System.Collections.Generic
applicationContext IRebelApplicationContext
parameters IEnumerable
task ITask
Résultat System.Collections.Generic
        public ConfigurationTaskContext(IRebelApplicationContext applicationContext, IEnumerable<ITaskParameter> parameters, ITask task)
        {
            Parameters = parameters.ToDictionary(x => x.Name, x => x.Value);
            Task = task;
            ApplicationContext = applicationContext;
        }
ConfigurationTaskContext