NET Logging Library
SaveConfigurationToAppConfigOrWebConfig() Method
Example 



KellermanSoftware.NetLoggingLibrary Namespace > ConcreteLog Class > SaveConfigurationToAppConfigOrWebConfig Method : SaveConfigurationToAppConfigOrWebConfig() Method
Save the current configuration to the app.config or web.config file depending upon the application
Syntax
Public Overloads Sub SaveConfigurationToAppConfigOrWebConfig() 
Dim instance As ConcreteLog
 
instance.SaveConfigurationToAppConfigOrWebConfig()
public void SaveConfigurationToAppConfigOrWebConfig()
public:
void SaveConfigurationToAppConfigOrWebConfig(); 
Example
ConcreteLog logger = new ConcreteLog();
 
//Licensed Mode
//logger.UserName = "User Name From Receipt";
//logger.LicenseKey = "LicenseKey From Receipt";            
 
//Clear all configuration
logger.ResetConfiguration();
 
//Add a new target, you can also define targets in an xml file, app.config, or web.config
FileTarget fileTarget = new FileTarget("fileLogger.txt");
logger.Config.Targets.Add(fileTarget);
 
//Example saving to log.Config XML file
logger.SaveConfigurationToXmlFile();
 
//Example saving to app.config or web.config
logger.SaveConfigurationToAppConfigOrWebConfig();
 
//Load from logger.Config if it exists, else load from web.config or app.config, else create setup default targets based on ASP.NET or WinForms or WPF
//In this case, since we just saved to both the logger.Config and the App.Config, it will load from the logger.Config
logger.LoadConfiguration();
Dim logger As New ConcreteLog()
 
'Licensed Mode
'logger.UserName = "User Name From Receipt";
'logger.LicenseKey = "LicenseKey From Receipt";            
 
'Clear all configuration
logger.ResetConfiguration()
 
'Add a new target, you can also define targets in an xml file, app.config, or web.config
Dim fileTarget As New FileTarget("fileLogger.txt")
logger.Config.Targets.Add(fileTarget)
 
'Example saving to log.Config XML file
logger.SaveConfigurationToXmlFile()
 
'Example saving to app.config or web.config
logger.SaveConfigurationToAppConfigOrWebConfig()
 
'Load from logger.Config if it exists, else load from web.config or app.config, else create setup default targets based on ASP.NET or WinForms or WPF
'In this case, since we just saved to both the logger.Config and the App.Config, it will load from the logger.Config
logger.LoadConfiguration()
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ConcreteLog Class
ConcreteLog Members
Overload List