使用 app.config 配置 StructureMap

发布于 2024-10-01 19:25:37 字数 175 浏览 2 评论 0原文

我需要将 StructureMap 配置从配置类移动到应用程序的 app.config。

有人知道以下代码是否具有等效的 XML 配置吗?

For(typeof(ILogger<>)).Use(typeof(Log4NetLogger<>));

I need to move my StructureMap configuration from a configuration class to my application's app.config.

Anyone know if the following code has an XML configuration equivalent?

For(typeof(ILogger<>)).Use(typeof(Log4NetLogger<>));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

方圜几里 2024-10-08 19:25:37

StructureMap 文档说您可以使用 DefaultInstance 元素

,例如:

  <DefaultInstance 
    PluginType="StructureMap.Testing.Widget.IWidget,StructureMap.Testing.Widget" 
    PluggedType="StructureMap.Testing.Widget.ColorWidget,StructureMap.Testing.Widget" 
    Scope="Singleton" />

在上面的示例节点中,各部分是:

  1. PluginType - PluginType 的程序集限定名称(ObjectFactory.GetInstance() 中的“T”)
  2. PluggedType -- 实际、具体的 PluggedType 的程序集限定名称
  3. Scope -- 可以选择定义此 PluginType 的范围/生命周期

http://structuralmap.net/structuralmap/XmlReference.htm#section7

The StructureMap documentation says you can use the DefaultInstance Element

eg:

  <DefaultInstance 
    PluginType="StructureMap.Testing.Widget.IWidget,StructureMap.Testing.Widget" 
    PluggedType="StructureMap.Testing.Widget.ColorWidget,StructureMap.Testing.Widget" 
    Scope="Singleton" />

In the sample node above, the parts are:

  1. PluginType -- Assembly qualified name of the PluginType (the "T" in ObjectFactory.GetInstance() )
  2. PluggedType -- Assembly qualified name of the actual, concrete PluggedType
  3. Scope -- Optionally defines the scope/lifecycle for this PluginType

http://structuremap.net/structuremap/XmlReference.htm#section7

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文