0

我在 Silverlight 项目中使用 Enterprise Library 5.0,Logging 块。在我希望能够实例化记录器的项目中,我相信正确的类是 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;
    }
}

谁能帮我填空?

感谢您的时间!

4

1 回答 1

0

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

演示的源代码在这里

此外,请参阅开发人员指南的这一章

于 2012-05-12T15:08:53.690 回答