FileConfigReader

Config reader that reads a configuration from a file.

Inherits: ConfigReader

Description

The FileConfigReader class allows you to create a config reader that reads a configuration from a file.

Configuration parameters

  • path: path to configuration file
  • parameters: this entire section is used as template parameters

Constructors

Creates a new instance of the config reader.

public FileConfigReader(string path = null)

  • path: string - (optional) path to configuration file.

Properties

Path

Gets and sets the path to configuration file.

public string Path { get; set; }

Instance methods

Configure

Configures a component by its passing configuration parameters.

public override void Configure(ConfigParams config)

  • config: ConfigParams - configuration parameters to be set.

See also