gpt4 book ai didi

c# - xml配置文件中unity : pass parameters to custom lifetime constructor,

转载 作者:太空宇宙 更新时间:2023-11-03 16:53:16 24 4
gpt4 key购买 nike

我这样写我的 CustomLifetimeManager:

public class CustomLifetimeManager <T> : LifetimeManager
{
private readonly string _arg;

public CustomLifetimeManager(string arg)
{
_arg = arg;
}
}

现在,以编程方式配置容器很容易,但是如何像下面这样将其添加到配置文件中呢?

<type type="myTime"
mapTo="myImpl">
<lifetime type="CustomLifetimeManager"/>
</type>

最佳答案

您需要添加第二个类:TypeConverter。此类负责获取字符串并将其转换为您想要的任何类型。一旦你实现了它,你就可以在你的配置文件中做这样的事情:

<register type="MyType" mapTo"MyImpl">
<lifetime typeConverter="CustomLifetimeManagerConverter" value="arg" />
</register>

从那里它应该可以正常工作(假设配置可以像任何其他类型一样找到类型转换器)。

关于c# - xml配置文件中unity : pass parameters to custom lifetime constructor,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3178394/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com