Unity 框架 - 将整数和字符串传递到已解析的对象中
有没有办法使用 Unity 框架将整数作为参数传递到构造函数或解析的对象中?
伪代码..
IService svc = Container.Resolve<ConcreteService>()
在这种情况下,具体服务将是这样的...
public class ConcreteService
{
public ConcreteService(int val)
{
}
}
而且我需要在 xml 配置中执行此操作,而不是在代码中执行此操作。
提前致谢。
is there a way using the Unity framework to pass an integer as an argument into the constructor or a resolved object?
Pseudo code..
IService svc = Container.Resolve<ConcreteService>()
in this case Concrete service will be something like this...
public class ConcreteService
{
public ConcreteService(int val)
{
}
}
Also I need to do this in xml configuration as opposed to doing it in code.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望我理解你的意思
现在让我们配置 Unity。
“for42”的等效配置是
Unity 1.4
Unity 2.0
非常相似,但没有冗余的 typeConfig 节点
Hope I understood you right
Now let's configure unity.
Equvivalent configuration for "for42" is
Unity 1.4
Unity 2.0
It's much the same but without redundant typeConfig node