Пример #1
0
 public DeserializedData(string uri, FileLocationType locationType, ISourceServerAuthorizationInformationProvider sourceServerAuthorizationInformationProvider, ISymbolServerArtifactRetriever symbolServerArtifactRetriever, string tempDownloadLocation)
 {
     this.uri          = uri;
     this.locationType = locationType;
     this.sourceServerAuthorizationInformationProvider = sourceServerAuthorizationInformationProvider;
     this.symbolServerArtifactRetriever = symbolServerArtifactRetriever;
     this.tempDownloadLocation          = tempDownloadLocation;
 }
Пример #2
0
 public LogFile(string fileLocation, FileLocationType location, string description, string alarmtype)
 {
     Description      = description;
     AlarmType        = alarmtype;
     FileLocation     = fileLocation;
     FileLocationType = location;
     if (SeperationChar == ' ')
     {
         SeperationChar = FindSeperationChar(LogData);
     }
     // _dateColumnIndex = FindDateColumnIndex(LogData);
     GetAllLogData();
 }