Configure() protected abstract method

protected abstract Configure ( string>.Dictionary environment ) : void
environment string>.Dictionary
return void
Ejemplo n.º 1
0
        private static Collection <CloudRuntime> GetRuntimes(Dictionary <string, string> settings,
                                                             string roleName, string rolePath)
        {
            Collection <CloudRuntime> runtimes = new Collection <CloudRuntime>(new List <CloudRuntime>());

            foreach (RuntimeType runtimeType in GetRuntimeTypes(settings))
            {
                CloudRuntime runtime = CreateRuntimeInternal(runtimeType, roleName, rolePath);
                runtime.Configure(settings);
                runtimes.Add(runtime);
            }

            return(runtimes);
        }