Beispiel #1
0
 public SpyPathArgs(HashSpy hashSpy, string path)
 {
     m_HashSpy = hashSpy;
     m_Path    = path;
 }
Beispiel #2
0
 public SpyProcessArgs(HashSpy hashSpy, Process process)
 {
     m_HashSpy = hashSpy;
     m_Process = process;
 }
Beispiel #3
0
        // --------------------------------------------------------------
        #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;
        }
Beispiel #4
0
        // --------------------------------------------------------------
        #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();
 }