Projekt

Obecné

Profil

Stáhnout (486 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 e6a01bd8 Pultak
namespace LDClient.detection; 
2
3
/// <summary>
4
/// This interface defines the functionality of a process detector.
5
/// A process detector is used to determine whether a user is currently
6
/// using a debugger or not.
7
/// </summary>
8
internal interface IProcessDetection {
9
        
10 12899c8b silhavyj
    /// <summary>
11 e6a01bd8 Pultak
    /// Periodically runs process detection. This method is instantiated
12
    /// as a thread from the main class (Program.cs).
13 12899c8b silhavyj
    /// </summary>
14 e6a01bd8 Pultak
    public void RunPeriodicDetection();
15 f281acac silhavyj
}