C# Class Aspects.Logging.Configuration.Infrastructure.LogAspectConfig

Represents the configuration section for the logging aspect
See also base object System.Configuration.ConfigurationSection http://www.codeproject.com/Articles/32490/Custom-Configuration-Sections-for-Lazy-Coders
Inheritance: System.Configuration.ConfigurationSection
Datei anzeigen Open project: vnvizitiu/AOP Class Usage Examples

Private Properties

Property Type Description
LogAspectConfig System

Public Methods

Method Description
Copy ( ) : LogAspectConfig

The copy.

Open ( ) : LogAspectConfig

Get this configuration set from the application's default config file

Open ( string path ) : LogAspectConfig

Get this configuration set from a specific config file

Save ( ) : void

Save the current property values to the config file

Private Methods

Method Description
LogAspectConfig ( ) : System

Method Details

Copy() public method

The copy.
public Copy ( ) : LogAspectConfig
return LogAspectConfig

Open() public static method

Get this configuration set from the application's default config file
public static Open ( ) : LogAspectConfig
return LogAspectConfig

Open() public static method

Get this configuration set from a specific config file
public static Open ( string path ) : LogAspectConfig
path string The path.
return LogAspectConfig

Save() public method

Save the current property values to the config file
public Save ( ) : void
return void