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


C# IocContainer.Add方法代码示例

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


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

示例1: GetServiceTest2

 public void GetServiceTest2()
 {
     var type = typeof(DefaultService1);
     var container = new IocContainer();
     container.Add(type, true);
     var childContainer = new IocContainer(container);
     Assert.Equal(childContainer.Get(type), container.Get(type));
 }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:8,代码来源:IocContainerTests.cs

示例2: AddService_TypeObjectBoolean_Test1

        public void AddService_TypeObjectBoolean_Test1()
        {
            var container = new IocContainer();
            container.Add(typeof(IService2), new XService2());

            var childContainer = new IocContainer(container);
            Assert.IsAssignableFrom<XService2>(childContainer.Get(typeof(IService2)));
        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:8,代码来源:IocContainerTests.cs

示例3: AddService_TypeBooleanBoolean_Test2

        public void AddService_TypeBooleanBoolean_Test2()
        {
            var type = typeof(DefaultService1);
            var itype = typeof(IService1);

            var container = new IocContainer();

            container.Add(type, true);
            Assert.NotNull(container.Get(type));
            Assert.NotNull(container.Get(itype));
            Assert.Equal(container.Get(type), container.Get(type));
            Assert.NotEqual(container.Get(type), container.Get(itype));
            Assert.IsAssignableFrom(type, container.Get(itype));
        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:14,代码来源:IocContainerTests.cs

示例4: RemoveServiceTest1

 public void RemoveServiceTest1()
 {
     var container = new IocContainer();
     var childContainer = new IocContainer(container);
     var itype = typeof(IService2);
     childContainer.Add(itype, lmp => new XService2(), promote: true);
     Assert.True(container.Contains(itype));
     Assert.True(childContainer.Contains(itype));
     container.Add(itype, lmp => new DefaultService2());
     Assert.IsAssignableFrom<XService2>(childContainer.Get(itype));
     Assert.IsAssignableFrom<DefaultService2>(container.Get(itype));
     childContainer.Remove(itype);
     Assert.IsAssignableFrom<DefaultService2>(childContainer.Get(itype));
     Assert.IsAssignableFrom<DefaultService2>(container.Get(itype));
     Assert.False(childContainer.Contains(itype));
 }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:16,代码来源:IocContainerTests.cs

示例5: ContainsServiceServiceTest1

 public void ContainsServiceServiceTest1()
 {
     var container = new IocContainer();
     var childContainer = new IocContainer(container);
     var itype = typeof(IService2);
     childContainer.Add(itype, lmp => new XService2(), promote: true);
     Assert.True(childContainer.Contains(itype));
     childContainer.Remove(itype);
     Assert.False(childContainer.Contains(itype));
     Assert.True(childContainer.Contains(itype, true));
 }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:11,代码来源:IocContainerTests.cs

示例6: DefaultMappingTest2

        public void DefaultMappingTest2()
        {
            var container = new IocContainer();
            var service = container.Get<DefaultMappingCtorService>();
            Assert.IsType<DefaultMappingService2>(service.InnerService);
            container.DestroyAll();

            container.Add(typeof(IDefaultMappingService), typeof(DefaultMappingService));
            service = container.Get<DefaultMappingCtorService>();
            Assert.IsType<DefaultMappingService>(service.InnerService);
        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:11,代码来源:IocContainerTests.cs

示例7: LastMappingTest2

 public void LastMappingTest2()
 {
     var container = new IocContainer();
     container.Add("baseValue1", 10);
     container.Add("baseValue2", 20);
     container.Add(typeof(LastMapperTestModel));
     var ex = Assert.Throws<ArgumentException>(() => container.Get(typeof(LastMapperTestModel), 50));
     Assert.Equal("value1", ex.ParamName);
 }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:9,代码来源:IocContainerTests.cs

示例8: LastMappingTest1

        public void LastMappingTest1()
        {
            var container = new IocContainer();
            container.Add("baseValue1", 10);
            container.Add("baseValue2", 20);
            container.Add(typeof(LastMapperTestModel));
            var model = container.Get(typeof(LastMapperTestModel), 50, 80) as LastMapperTestModel;

            Assert.Equal(10, model.BaseValue1);
            Assert.Equal(20, model.BaseValue2);
            Assert.Equal(80, model.Value1);
            Assert.Equal(50, model.Value2);
        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:13,代码来源:IocContainerTests.cs

示例9: TypeValue_Test3

        public void TypeValue_Test3()
        {
            var parentContainer = new IocContainer();
            var childContainer = new IocContainer(parentContainer);
            parentContainer.Add("value1", 1);
            parentContainer.Add("value2", "2");
            parentContainer.Add("value3", false);

            childContainer.Add("value1", 9999);
            childContainer.Add("value2", "9999");

            childContainer.Add(typeof(IValueService), typeof(ValueService1));
            parentContainer.Add(typeof(IValueService), typeof(ValueService2));

            var childService = childContainer.Get(typeof(IValueService)) as IValueService;
            var parentService = parentContainer.Get(typeof(IValueService)) as IValueService;

            Assert.Equal(1, parentService.Value1);
            Assert.Equal("2", parentService.Value2);
            Assert.Equal(false, parentService.Value3);

            Assert.Equal(9999, childService.Value1);
            Assert.Equal("9999", childService.Value2);
            Assert.Equal(false, childService.Value3);

            childContainer.Add(typeof(IValueService), "value2", "8888");
            var childService2 = childContainer.Get(typeof(IValueService)) as IValueService;

            Assert.Equal(9999, childService2.Value1);
            Assert.Equal("9999", childService2.Value2); //- 因为已映射,所以这里的值还是历史值
            Assert.Equal(false, childService2.Value3);

            childContainer.Remove(typeof(IValueService));
            childContainer.Add(typeof(IValueService), typeof(ValueService1));

            var childService3 = childContainer.Get(typeof(IValueService)) as IValueService;
            Assert.Equal("8888", childService3.Value2);
        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:38,代码来源:IocContainerTests.cs

示例10: TypeValue_Test2

        public void TypeValue_Test2()
        {
            var type = typeof(IValueService);
            var container = new IocContainer();
            var childContainer = new IocContainer(container);
            container.Add(type, "A", 15);
            Assert.Equal(15, childContainer.Get(type, "A"));

            int index = 0;
            container.Add(type, "B", lmp => ++index);
            Assert.Equal(1, childContainer.Get(type, "B"));
            Assert.Equal(2, childContainer.Get(type, "B"));
            index = 0;

            container.Add(type, "C", lmp => ++index, true);

            Assert.Equal(1, childContainer.Get(type, "C"));
            Assert.Equal(1, childContainer.Get(type, "C"));

            Assert.True(childContainer.Contains(type, "A", true));
            container.Remove(type, "A", true);
            Assert.False(childContainer.Contains(type, "A", true));

            index = 0;
            container.Add(type, "D", lmp => ++index);
            Assert.Equal(1, childContainer.Get(type, "D"));
            Assert.Equal(2, container.Get(type, "D"));

        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:29,代码来源:IocContainerTests.cs

示例11: Value_Test3

        public void Value_Test3()
        {
            var parentContainer = new IocContainer();
            var childContainer = new IocContainer(parentContainer);
            parentContainer.Add("value1", 1);
            parentContainer.Add("value2", "2");
            parentContainer.Add("value3", false);

            childContainer.Add("value1", 9999);
            childContainer.Add("value2", "9999");

            childContainer.Add(typeof(IValueService), typeof(ValueService1));
            parentContainer.Add(typeof(IValueService), typeof(ValueService2));

            var childService = childContainer.Get(typeof(IValueService)) as IValueService;
            var parentService = parentContainer.Get(typeof(IValueService)) as IValueService;

            Assert.Equal(1, parentService.Value1);
            Assert.Equal("2", parentService.Value2);
            Assert.Equal(false, parentService.Value3);

            Assert.Equal(9999, childService.Value1);
            Assert.Equal("9999", childService.Value2);
            Assert.Equal(false, childService.Value3);

        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:26,代码来源:IocContainerTests.cs

示例12: Value_Test2

        public void Value_Test2()
        {
            var container = new IocContainer();
            var childContainer = new IocContainer(container);
            container.Add("A", 15);
            Assert.Equal(15, childContainer.Get("A"));

            int index = 0;
            container.Add("B", lmp => ++index);
            Assert.Equal(1, childContainer.Get("B"));
            Assert.Equal(2, childContainer.Get("B"));
            index = 0;

            container.Add("C", lmp => ++index, true);

            Assert.Equal(1, childContainer.Get("C"));
            Assert.Equal(1, childContainer.Get("C"));

            Assert.True(childContainer.Contains("A", true));
            container.Remove("A", true);
            Assert.False(childContainer.Contains("A", true));

            index = 0;
            container.Add("D", lmp => ++index);
            Assert.Equal(1, childContainer.Get("D"));
            Assert.Equal(2, container.Get("D"));

        }
开发者ID:supuy-ruby,项目名称:Aoite,代码行数:28,代码来源:IocContainerTests.cs


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