Apprenda.Log4NetConnectorPolicy.Log4NetAppConfigUpdateService.Log4NetAppConfigUpdateService C# (CSharp) Method

Log4NetAppConfigUpdateService() public method

Initializes a new instance of the Log4NetAppConfigUpdateService class.
/// If path is null or empty. ///
public Log4NetAppConfigUpdateService ( string path ) : System
path string /// The path. ///
return System
        public Log4NetAppConfigUpdateService(string path)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentException("Path to configuration file must be supplied.", "path");
            }

            _path = path;
        }