当前位置: 首页>>代码示例>>C#>>正文


C# DependencyInjectionContainer.Locate方法代码示例

本文整理汇总了C#中DependencyInjectionContainer.Locate方法的典型用法代码示例。如果您正苦于以下问题:C# DependencyInjectionContainer.Locate方法的具体用法?C# DependencyInjectionContainer.Locate怎么用?C# DependencyInjectionContainer.Locate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DependencyInjectionContainer的用法示例。


在下文中一共展示了DependencyInjectionContainer.Locate方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ConfigureWithXmlThirdSectionWithShortNames

        public void ConfigureWithXmlThirdSectionWithShortNames()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.ConfigureWithXml("thirdGrace");

            IConstructorImportService importService = container.Locate<IConstructorImportService>();

            Assert.NotNull(importService);

            Assert.Equal(5, container.Locate("IntProperty"));
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:12,代码来源:AppConfigTests.cs

示例2: AsKeyedStringTest

        public void AsKeyedStringTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Configure(c =>
                                {
                                    c.ExportInstance((scope, context) => "Hello");
                                    c.ExportInstance((scope, context) => "HelloAgain").AsKeyed<string,string>("Key");
                                });

            Assert.Equal("Hello",container.Locate<string>());
            Assert.Equal("HelloAgain",container.Locate<string>(withKey: "Key"));
        }
开发者ID:ricardoshimoda,项目名称:Grace,代码行数:13,代码来源:KeyedTests.cs

示例3: MessageHandlerAttributeToken

        public void MessageHandlerAttributeToken()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Configure(c => c.Export<DispatchedMessenger>().As<IDispatchedMessenger>().AndSingleton());

            TestClass tc = container.Locate<TestClass>();

            IDispatchedMessenger dispatchedMessenger = container.Locate<IDispatchedMessenger>();

            dispatchedMessenger.Send(5, "Multiply");

            Assert.AreEqual(50, tc.TestInt);
        }
开发者ID:karolszmaj,项目名称:StyleMVVM,代码行数:14,代码来源:MessageHandlerAttributeTest.cs

示例4: BeginLifetimeScope

        public void BeginLifetimeScope()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Configure(c => c.Export<DisposableService>().As<IDisposableService>().Lifestyle.SingletonPerScope());

            IDisposableService service = container.Locate<IDisposableService>();

            Assert.NotNull(service);

            bool called = false;

            using (var scope = container.BeginLifetimeScope())
            {
                var secondService = scope.Locate<IDisposableService>();

                Assert.NotNull(secondService);
                Assert.NotSame(service, secondService);
                Assert.Same(secondService, scope.Locate<IDisposableService>());

                secondService.Disposing += (sender, args) => called = true;
            }

            Assert.True(called);
        }
开发者ID:ricardoshimoda,项目名称:Grace,代码行数:25,代码来源:AdvancedContainerTests.cs

示例5: CombinedSpecialTest

		public void CombinedSpecialTest()
		{
			DependencyInjectionContainer container = new DependencyInjectionContainer();

			container.Configure(c => c.Export<LazyService>().As<ILazyService>().WithMetadata("Hello", "World"));

			LazyService.Created = false;

			Lazy<Meta<ILazyService>> lazy = container.Locate<Lazy<Meta<ILazyService>>>();

			Assert.NotNull(lazy);
			Assert.False(LazyService.Created);

			Assert.NotNull(lazy.Value);
			Assert.NotNull(lazy.Value.Value);

			ILazyService service = lazy.Value.Value;

			Assert.NotNull(service);
			Assert.True(LazyService.Created);

			KeyValuePair<string, object> metadata = lazy.Value.Metadata.First();

			Assert.Equal("Hello", metadata.Key);
			Assert.Equal("World", metadata.Value);
		}
开发者ID:ricardoshimoda,项目名称:Grace,代码行数:26,代码来源:LazyTests.cs

示例6: OwnedLazyMetaTest

        public void OwnedLazyMetaTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Configure(c => c.Export<DisposableService>().As<IDisposableService>().WithMetadata(
                "Hello",
                "World"));

            Owned<Lazy<Meta<IDisposableService>>> ownedLazy =
                container.Locate<Owned<Lazy<Meta<IDisposableService>>>>();

            Assert.NotNull(ownedLazy);
            Assert.NotNull(ownedLazy.Value);
            Assert.NotNull(ownedLazy.Value.Value);
            Assert.NotNull(ownedLazy.Value.Value.Value);

            bool disposedCalled = false;

            ownedLazy.Value.Value.Value.Disposing += (sender, args) => disposedCalled = true;

            ownedLazy.Dispose();

            Assert.True(disposedCalled);

            KeyValuePair<string, object> metadata = ownedLazy.Value.Value.Metadata.First();

            Assert.Equal("Hello", metadata.Key);
            Assert.Equal("World", metadata.Value);
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:29,代码来源:OwnedTests.cs

示例7: FactoryFiveArgWithOutBasicAndOutOfOrderTest

        public void FactoryFiveArgWithOutBasicAndOutOfOrderTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            BasicService basicService = new BasicService();

            container.Configure(c =>
                                {
                                    c.Export<FiveArgParameterService>().As<IArrayOfObjectsPropertyService>();
                                    c.ExportInstance(basicService).As<IBasicService>();
                                });

            FiveArgParameterService.ActivateWithOutBasicServiceAndOutOfOrder factory =
                container.Locate<FiveArgParameterService.ActivateWithOutBasicServiceAndOutOfOrder>();

            Assert.NotNull(factory);

            IArrayOfObjectsPropertyService instance = factory(14.0m, "Blah", 9.0, 5);

            Assert.NotNull(instance);
            Assert.Equal(5, instance.Parameters.Length);
            Assert.Equal("Blah", instance.Parameters[0]);
            Assert.Equal(5, instance.Parameters[1]);
            Assert.Equal(9.0, instance.Parameters[2]);
            Assert.Equal(14.0m, instance.Parameters[3]);
            Assert.Equal(basicService, instance.Parameters[4]);
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:27,代码来源:DelegateFactoryTests.cs

示例8: BulkLocateWithKey

        public void BulkLocateWithKey()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Configure(c => c.Export(Types.FromThisAssembly())
                                      .ByInterface<ISimpleObject>()
                                      .WithKey(t => t.Name.Last()));

            container.Configure(c =>
            {
                foreach (char ch in "ABCDE")
                {
                    c.Export<ImportSingleSimpleObject>()
                     .WithKey(ch)
                     .WithCtorParam<ISimpleObject>()
                     .LocateWithKey(ch);
                }
            });

            ImportSingleSimpleObject single = container.Locate<ImportSingleSimpleObject>(withKey: 'A');

            Assert.NotNull(single);
            Assert.IsType<SimpleObjectA>(single.SimpleObject);

            Assert.Equal(3, container.LocateAll<ImportSingleSimpleObject>(withKey: new[] { 'A', 'C', 'E' }).Count);
        }
开发者ID:ricardoshimoda,项目名称:Grace,代码行数:26,代码来源:KeyedTests.cs

示例9: ImportIInjectionScopeDiagnostic

		public void ImportIInjectionScopeDiagnostic()
		{
			DependencyInjectionContainer container = new DependencyInjectionContainer();

			InjectionScopeDiagnostic diag = container.Locate<InjectionScopeDiagnostic>();

			Assert.Equal(0, diag.PossibleMissingDependencies.Count());
		}
开发者ID:jrjohn,项目名称:Grace,代码行数:8,代码来源:IInjectionScopeDiagnosticTests.cs

示例10: SetReturnExample

		public void SetReturnExample()
		{
			DependencyInjectionContainer container = new DependencyInjectionContainer();

			container.Substitute();

			container.Configure(c => c.Export<ImportConstructor>());

			container.Locate<IBasicService>().SomeMethod().Returns(5);

			ImportConstructor constructor = container.Locate<ImportConstructor>();

			Assert.NotNull(constructor);
			Assert.NotNull(constructor.BasicService);

			Assert.Equal(5, constructor.BasicService.SomeMethod());
		}
开发者ID:jrjohn,项目名称:Grace,代码行数:17,代码来源:NSubstituteUnitTest.cs

示例11: ConfigureWithXmlModuleTest

        public void ConfigureWithXmlModuleTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.ConfigureWithXml();

            IBasicService basicService = container.Locate<IBasicService>();

            Assert.NotNull(basicService);
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:10,代码来源:AppConfigTests.cs

示例12: ConfigureWithXmlModulePropertySetTest

        public void ConfigureWithXmlModulePropertySetTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.ConfigureWithXml();

            int intProperty = (int)container.Locate("IntProperty");

            Assert.Equal(5, intProperty);
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:10,代码来源:AppConfigTests.cs

示例13: ConfigureWithXmlExportTest

        public void ConfigureWithXmlExportTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.ConfigureWithXml();

            IConstructorImportService importService = container.Locate<IConstructorImportService>();

            Assert.NotNull(importService);
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:10,代码来源:AppConfigTests.cs

示例14: AutoCreateTest

        public void AutoCreateTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Configure(c => c.Export<BasicService>().As<IBasicService>());

            ImportConstructorService constructorService = container.Locate<ImportConstructorService>();

            Assert.NotNull(constructorService);
        }
开发者ID:ricardoshimoda,项目名称:Grace,代码行数:10,代码来源:BasicContainerTests.cs

示例15: ResolveTest

        public void ResolveTest()
        {
            DependencyInjectionContainer container = new DependencyInjectionContainer();

            container.Substitute();

            container.Configure(c => c.Export<ImportConstructorService>().As<IImportConstructorService>());

            container.Locate<IBasicService>().TestMethod().Returns(5);
            container.Locate<IBasicService>().Count.Returns(5);

            IImportConstructorService importConstructorService =
                container.Locate<IImportConstructorService>();

            Assert.NotNull(importConstructorService);
            Assert.NotNull(importConstructorService.BasicService);

            Assert.Equal(5, importConstructorService.BasicService.Count);
            Assert.Equal(5, importConstructorService.BasicService.TestMethod());
        }
开发者ID:jrjohn,项目名称:Grace,代码行数:20,代码来源:NSubstituteTests.cs


注:本文中的DependencyInjectionContainer.Locate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。