Note: This API is now obsolete.
Configures the ILoggerRepository using the specified configuration
file.
Namespace: log4net.Config
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax
[ObsoleteAttribute("Use XmlConfigurator.Configure instead of DOMConfigurator.Configure")] public static void Configure( ILoggerRepository repository, Stream configStream )
Parameters
- repository
- Type: log4net.RepositoryILoggerRepository
The repository to configure. - configStream
- Type: System.IOStream
The stream to load the XML configuration from.
Remarks
DOMConfigurator is obsolete. Use XmlConfigurator instead of DOMConfigurator.
The configuration data must be valid XML. It must contain at least one element called log4net that holds the configuration data.
Note that this method will NOT close the stream parameter.
See Also