温莎 流畅的界面生活方式
这些是用于设置组件生活方式的等效语法吗?
Component.For<IFoo>()
.ImplementedBy<Foo>()
.LifeStyle.Is(LifestyleType.Transient)
Component.For<IBar>()
.ImplementedBy<Bar>()
.LifeStyle.Transient
Are these equivalent syntaxes for setting component lifestyle?
Component.For<IFoo>()
.ImplementedBy<Foo>()
.LifeStyle.Is(LifestyleType.Transient)
Component.For<IBar>()
.ImplementedBy<Bar>()
.LifeStyle.Transient
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,他们是。
在有关于流畅界面的完整文档之前,最好的信息来源是 测试。
另一个信息来源是这个wiki 页面。
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.