vote up 0 vote down star

Are these equivalent syntaxes for setting component lifestyle?

Component.For<IFoo>()
         .ImplementedBy<Foo>()
         .LifeStyle.Is(LifestyleType.Transient)

Component.For<IBar>()
         .ImplementedBy<Bar>()
         .LifeStyle.Transient
flag

1 Answer

vote up 1 vote down check

Yes, they are.

Until there's a complete documentation on the fluent interface, the best source for information is the tests.

Another source of information is this wiki page.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.