本文整理汇总了C#中IocContainer.Remove方法的典型用法代码示例。如果您正苦于以下问题:C# IocContainer.Remove方法的具体用法?C# IocContainer.Remove怎么用?C# IocContainer.Remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IocContainer
的用法示例。
在下文中一共展示了IocContainer.Remove方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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));
}
示例2: 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));
}
示例3: 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"));
}
示例4: 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);
}
示例5: 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"));
}