hMailServer.Configuration.IniFile.IniFile C# (CSharp) Method

IniFile() public method

public IniFile ( string iniPath ) : System
iniPath string
return System
        public IniFile(string iniPath)
        {
            if (iniPath== null)
                throw new ArgumentNullException(nameof(iniPath));

            _fullPath = iniPath;
        }