public SpyPathArgs(HashSpy hashSpy, string path) { m_HashSpy = hashSpy; m_Path = path; }
public SpyProcessArgs(HashSpy hashSpy, Process process) { m_HashSpy = hashSpy; m_Process = process; }
// -------------------------------------------------------------- #region CONSTRUCTOR // -------------------------------------------------------------- /// <summary> /// Initialize the thread arguments /// </summary> /// <param name="hashSpy">Spy object to use</param> /// <param name="process">Process to spy</param> public SpyProcessArgs(HashSpy hashSpy, Process process) { HashSpy = hashSpy; Process = process; }
// -------------------------------------------------------------- #region CONSTRUCTOR // -------------------------------------------------------------- /// <summary> /// Initialize the thread arguments /// </summary> /// <param name="hashSpy">Spy object to use</param> /// <param name="path">Path of the executable to start</param> public SpyPathArgs(HashSpy hashSpy, string path) { HashSpy = hashSpy; Path = path; }
/// <summary> /// Initialize the spy object /// </summary> public static void InitializeHashSpy() { HashSpy = new HashSpy(); }