指定生活方式

Lifestyle如何城堡控制使用元件的範圍以及何時清理元件。內建的生活方式是 SingeltonTransientPerWebRequestScopedBoundPerThreadPooled

container.Register(
   Component.For<IFoo>()
            .ImplementedBy<Foo>()
            .LifestyleSingleton(),

    Component.For<IBar>()
             .ImplementedBy<Bar>()
             .LifestyleTransient());