Пример #1
0
 public static LogElementDTO LoadElement(LRAPLogType logType, LogElementInfo logElementInfo)
 {
     return(GetLoggingPersister(logType).LoadLogElement(logElementInfo));
 }
Пример #2
0
 public LogElementDTO LoadLogElement(LogElementInfo logElementInfo)
 {
     throw new NotImplementedException();
 }
Пример #3
0
        public LogElementDTO LoadLogElement(LogElementInfo logElementInfo)
        {
            var json = File.ReadAllText(logElementInfo.FilePath);

            return(SerializationHelper.Deserialize <LogElementDTO>(json, SerializationType.Json));
        }