我在 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;
}
}
谁能帮我填空?
感谢您的时间!