示例#1
0
 public Manager(IAgentReader <T> reader, IAgentWriter <T> writer)
 {
     this.metadata = Activator.CreateInstance <T>();
     this.reader   = reader;
     this.writer   = writer;
     MetadataWatcher.MetadataUpdateEvent += new MetadataWatcher.EventHandler(Synchronize);
 }
 public ManifestDetectedEvent(IAnalysisLocation analysisLocation, IAgentReader agentReader, string manifestPath)
 {
     AnalysisLocation = analysisLocation;
     AgentReader      = agentReader;
     ManifestPath     = manifestPath;
 }
示例#3
0
 public AgentDetectedForDetectManifestEvent(IAnalysisLocation analysisLocation, IAgentReader agentReader)
 {
     AnalysisLocation = analysisLocation;
     AgentReader      = agentReader;
 }
示例#4
0
 public DetectManifestsUsingAgentActivity(IAnalysisLocation analysisLocation, IAgentReader agentReader)
 {
     AnalysisLocation = analysisLocation;
     AgentReader      = agentReader;
 }