Ejemplo n.º 1
0
 public CpuInfoEventArgs(string RemoteIP, CpuInfo info)
 {
     this.RemoteIP = RemoteIP;
     this.cpuInfo = info;
 }
Ejemplo n.º 2
0
 public override void Run()
 {
     CpuInfoEventArgs e1 = new CpuInfoEventArgs(Client.RemoteEndPoint.ToString(), info);
     CpuInfoEvent.OnCpuInfo(e1);
     info = null; //clean memory
 }