本文整理汇总了C#中System.IocContainer.DefaultLifetimeFactory方法的典型用法代码示例。如果您正苦于以下问题:C# IocContainer.DefaultLifetimeFactory方法的具体用法?C# IocContainer.DefaultLifetimeFactory怎么用?C# IocContainer.DefaultLifetimeFactory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.IocContainer
的用法示例。
在下文中一共展示了IocContainer.DefaultLifetimeFactory方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CachedLifetimeCanBeSetAsDefaultLifetime
public void CachedLifetimeCanBeSetAsDefaultLifetime()
{
using (var container = new IocContainer(() => new CachedLifetime()))
{
Assert.IsInstanceOfType(container.DefaultLifetimeFactory(), typeof(CachedLifetime));
}
}
示例2: CanSetDefaultLifetimeToRequestLifetime
public void CanSetDefaultLifetimeToRequestLifetime()
{
using (var container = new IocContainer(() => new RequestLifetime()))
{
Assert.IsInstanceOfType(container.DefaultLifetimeFactory(), typeof(RequestLifetime));
}
}
示例3: ContainerCanSetDefaultsUsingTheConstructor
public void ContainerCanSetDefaultsUsingTheConstructor()
{
Func<ILifetime> lifetimeFactory = () => new ContainerLifetime();
var compileMode = CompileMode.Dynamic;
var index = new DirectIndex();
using (var container = new IocContainer(lifetimeFactory, compileMode, index))
{
Assert.IsInstanceOfType(container.DefaultLifetimeFactory(), typeof(ContainerLifetime));
Assert.IsTrue(compileMode == container.DefaultCompileMode);
Assert.AreSame(index, container.Index);
}
}
示例4: ContainerIsCreatedWithCorrectDefaults
public void ContainerIsCreatedWithCorrectDefaults()
{
using (var container = new IocContainer())
{
// Default Lifetime
Assert.IsInstanceOfType(container.DefaultLifetimeFactory(), typeof(TransientLifetime));
// Default CompileMode
Assert.IsTrue(container.DefaultCompileMode == CompileMode.Delegate);
// Default Index
Assert.IsInstanceOfType(container.Index, typeof(DirectIndex));
}
}
示例5: CanChangeLifetimeUsingSetLifetime
public void CanChangeLifetimeUsingSetLifetime()
{
using (var container = new IocContainer(() => new TransientLifetime()))
{
Assert.IsInstanceOfType(container.DefaultLifetimeFactory(), typeof(TransientLifetime));
var registration = container.Register<IFoo>(c => new Foo1()).SetLifetime(new ContainerLifetime());
Assert.IsInstanceOfType(registration.Lifetime, typeof(ContainerLifetime));
var foo1 = container.Resolve<IFoo>();
var foo2 = container.Resolve<IFoo>();
Assert.AreSame(foo1, foo2);
}
}
示例6: ContainerUsesTheDefaultLifetimeSetWhenRegistering
public void ContainerUsesTheDefaultLifetimeSetWhenRegistering()
{
// Make sure the set lifetime is not the default - if changed in the future !?
// Create a default IocContainer and check that the default lifetime is not ContainerLifetime?
using (var container = new IocContainer(() => new ContainerLifetime()))
{
var defaultLifetime = container.DefaultLifetimeFactory();
// Default Lifetime
Assert.IsInstanceOfType(defaultLifetime, typeof(ContainerLifetime));
var result1 = container.Register<IFoo>(c => new Foo1());
var result2 = container.Register<IBar>(c => new Bar1());
Assert.IsInstanceOfType(result1.Lifetime, typeof(ContainerLifetime));
Assert.IsInstanceOfType(result2.Lifetime, typeof(ContainerLifetime));
}
}
示例7: ContainerUsesTheDefaultLifetimeWhenRegistering
public void ContainerUsesTheDefaultLifetimeWhenRegistering()
{
using (var container = new IocContainer(() => new ContainerLifetime()))
{
var defaultLifetime = container.DefaultLifetimeFactory();
// Default Lifetime
Assert.IsInstanceOfType(defaultLifetime, typeof(ContainerLifetime));
// Try registering with all Register methods using lifetime
var result1 = container.Register<IFoo>(c => new Foo1());
var result2 = container.Register<IFoo, Foo1>("Key1");
var result3 = container.Register(typeof(IFoo), typeof(Foo1), "Key2");
Assert.IsInstanceOfType(result1.Lifetime, typeof(ContainerLifetime));
Assert.IsInstanceOfType(result2.Lifetime, typeof(ContainerLifetime));
Assert.IsInstanceOfType(result3.Lifetime, typeof(ContainerLifetime));
}
}