Esempio n. 1
0
        /// <summary>
        /// Gets the fileText of a specific dumprule file
        /// </summary>
        /// <param name="fileSettings">the dumprule file for which to get the configuration</param>
        /// <returns>the filecontent of the provided file</returns>
        private string GetFileText(DumpFormatFile fileSettings)
        {
            DumpRuleFile file;

            file = new DumpRuleFile(fileSettings);
            return(file.FileText);
        }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the DumpRuleFile class
 /// </summary>
 /// <param name="fileName">the fileName for which to alway have the newest content</param>
 public DumpRuleFile(DumpFormatFile formatFile)
 {
     FormatFile = formatFile;
 }