public void Initialize() { ContainerFactory.Current.KillAllInstances(); KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<Blueprint>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<Blueprint>(); Resolver.GetConfigurator().Bind<ICodeInjector>().To<CSharpInjector>(LanguageType.CSharp); Resolver.GetConfigurator().Bind<ICodeInjector>().To<VbCodeInjector>(LanguageType.VisualBasic); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); Resolver.GetConfigurator().Bind <ICodeInjector>().To <CSharpInjector>(LanguageType.CSharp); Resolver.GetConfigurator().Bind <ICodeInjector>().To <VbCodeInjector>(LanguageType.VisualBasic); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<Blueprint>(); Scope = RequestResponseScopefactory.CreateScope(); }
/// <summary> /// Terminates the kernel context /// </summary> /// <param name="provider"></param> internal static void EndKernelScope(IKernelContext provider, bool cleanAllScopes) { ((IKernelContextCommands)provider).End(); if (cleanAllScopes) { ContainerFactory.Current(new ContextProviders.ScopeContext(ResolverKernel)).KillAllInstances(); } }
/// <summary> /// Terminates the kernel context /// </summary> /// <param name="provider"></param> public static void EndKernelScope(IKernelContext provider, bool cleanAllScopes) { ((IKernelContextCommands)provider).End(); if (cleanAllScopes) { ContainerFactory.Current.KillAllInstances(); } }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); Resolver.GetConfigurator().Bind <IFileTransfer>().To <FileTransfer>(TransferMethods.File); Resolver.GetConfigurator().Bind <IFileTransfer>().To <HttpFileTrasfer>(TransferMethods.Http); Resolver.GetConfigurator().Bind <IFileTransfer>().To <FtpTrasfer>(TransferMethods.Ftp); Resolver.GetConfigurator().Bind <IFileTransfer>().To <FileTransfer>(); Resolver.GetConfigurator().UnBind <ILogging>().AllAndBind().To <Log4NetLogging>(); Logging.ResetLogger(); }
public AutoFacIntegrationTests() { try { Resolver.LoadIocContainer(new AutoFacFactory()); } catch (Exception) { } KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <AutoFacTestBindings>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<Blueprint>(); Resolver.GetConfigurator().Bind<IFileTransfer>().To<FileTransfer>(TransferMethods.File); Resolver.GetConfigurator().Bind<IFileTransfer>().To<HttpFileTrasfer>(TransferMethods.Http); Resolver.GetConfigurator().Bind<IFileTransfer>().To<FtpTrasfer>(TransferMethods.Ftp); Resolver.GetConfigurator().Bind<IFileTransfer>().To<FileTransfer>(); Resolver.GetConfigurator().UnBind<ILogging>().AllAndBind().To<Log4NetLogging>(); Logging.ResetLogger(); }
public AutoFacIntegrationTests() { try { Resolver.LoadIocContainer(new AutoFacFactory()); } catch (Exception) { } KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<AutoFacTestBindings>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<Blueprint>(); }
public ConfigSetTests() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <TestConfigServiceBindings>(); }
public void Initialize() { ContainerFactory.Current.KillAllInstances(); KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); }
public ConfigSetTests() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<TestConfigServiceBindings>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <TestBinding>(); Resolver.GetConfigurator().UnBind <IReplaceableSerializer>().AllAndBind().To <JsonReplaceableSerializer>().SetSingletonScope().AllowOverride = false; }
public BenchmarkTest() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); Scope = RequestResponseScopefactory.CreateScope(); }
public BenchmarkTest() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<Blueprint>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration<TestBinding>(); Resolver.GetConfigurator().UnBind<IReplaceableSerializer>().AllAndBind().To<JsonReplaceableSerializer>().SetSingletonScope().AllowOverride = false; }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <TestModuleBindingConfiguration>(); }