在企业库 5.0 + Silverlight 中实例化和配置记录器



我在 Silverlight 项目中使用 Enterprise Library 5.0,日志记录块。在项目中,我希望能够实例化一个记录器,我相信正确的类是LogWriterImpl。我还希望能够用 Xml 配置来配置这个 LogWriterImpl,所以最后我想要这样的东西:

public class LoggerFactory
{
    public LoggerWriter Create(string xmlFilePath)
    {
        // Load configuration from xmlFilePath
        ???
        // Read the configuration and create the parameters for the LogWritterImpl
        ???
        // In Silverlight there are several constructors for the LogWritterImpl class
        // which one to use? which arguments to use?
        var logger = new LogWritterImpl( /* which parameters go here? */ );
        return logger;
    }
}

谁能帮我填空?

谢谢你的时间!

请参阅此演练:http://channel9.msdn.com/posts/Enterprise-Library-for-Silverlight-Logging-demo

演示的源代码在这里。

另请参阅开发人员指南的这一章。

相关内容

最新更新