Example #1
0
 /// <summary>
 /// Constructor implmentation
 /// </summary>
 public ReplayService(IDependency dep)
 {
     _log = dep.GetEventLog();
     if (_manager == null)
     {
         _manager = new ReplayManager(dep);
     }
 }
Example #2
0
        /// <summary>
        /// Static constructor implementation
        /// </summary>
        internal ReplayManager(IDependency dep)
        {
            _log        = dep.GetEventLog();
            _blobUrl    = SystemUtilities.PayloadDownloadBlobUrl;
            _threatUrl  = SystemUtilities.ThreatDownloadBlobUrl;
            _httpClient = new HttpClient();
            RegistryVersion reg = new RegistryVersion();

            isbehavior4 = reg.IsADFSBehavior4;
        }
Example #3
0
 /// <summary>
 /// NTServiceManager constructor
 /// </summary>
 internal NTServiceManager(IDependency dep)
 {
     _log = dep.GetEventLog();
 }
 /// <summary>
 /// Constructor implmentation
 /// </summary>
 public ReplayService(IDependency dep)
 {
     _log = dep.GetEventLog();
 }
Example #5
0
 /// <summary>
 /// Constructor implmentation
 /// </summary>
 public NTService(IDependency dep)
 {
     _log     = dep.GetEventLog();
     _manager = new NTServiceManager(dep);
 }
Example #6
0
 /// <summary>
 /// Constructor implmentation
 /// </summary>
 public WebAdminService(IDependency dep)
 {
     _log     = dep.GetEventLog();
     _manager = new WebAdminManager(dep);
 }
Example #7
0
 /// <summary>
 /// Constructor implmentation
 /// </summary>
 public WebThemeService(IDependency dep)
 {
     _log     = dep.GetEventLog();
     _manager = new WebThemeManager(dep);
 }
 /// <summary>
 /// Static constructor implementation
 /// </summary>
 internal ReplayManager(IDependency dep)
 {
     _log = dep.GetEventLog();
     Start();
 }
 /// <summary>
 /// Constructor implmentation
 /// </summary>
 public WebAdminManager(IDependency dep)
 {
     _log = dep.GetEventLog();
 }