NET Logging Library
Config Property (ConcreteLog)
Example 



KellermanSoftware.NetLoggingLibrary Namespace > ConcreteLog Class : Config Property
The logging configuration
Syntax
Public Property Config As Configuration
Dim instance As ConcreteLog
Dim value As Configuration
 
instance.Config = value
 
value = instance.Config
public Configuration Config {get; set;}
public:
property Configuration^ Config {
   Configuration^ get();
   void set (    Configuration^ value);
}
Example
ConcreteLog logger = new ConcreteLog();
 
//Licensed Mode
//logger.UserName = "User Name From Receipt";
//logger.LicenseKey = "LicenseKey From Receipt";
        
logger.Config = new Configuration();
Dim logger As New ConcreteLog()
 
'Licensed Mode
'logger.UserName = "User Name From Receipt";
'logger.LicenseKey = "LicenseKey From Receipt";
 
logger.Config = New Configuration()
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