static SnapshooterSettings()
 {
     defaultSettings = new SnapshooterSettings
     {
         SnapshotDelayInMilliseconds = 10000,
         RequestUrl = "http://localhost:62164/api/Sessions/PostSnapshot"
     };
 }
Example #2
0
 public Snapshooter(string sessionId, SnapshooterSettings settings, IHttpService httpService)
 {
     this.Settings    = settings;
     this.SessionId   = sessionId;
     this.HttpService = httpService;
 }