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