Example #1
0
 static void Main(string[] args)
 {
     new LogDirectory(@"D:\BlobDataDownloader\Publish\2016-05-03").Subscribe(logFile =>
     {
         Console.WriteLine(logFile.SessionId);
         logFile.Subscribe(line =>
         {
             var row        = new KCVDBRow(line);
             var query      = HttpUtility.ParseQueryString(row.RequestValue);
             dynamic svdata = JsonConvert.DeserializeObject(row.ResponseValue.Replace("svdata=", ""));
             //Read(null, svdata);
         });
     });
 }
 public RowAnalyzingEventArgs(LogFile logFIle, KCVDBRow kcvdbRow)
 {
     this.LogFile = logFIle;
     this.Row     = kcvdbRow;
 }