aswi2022bug-thugs-gitlab/ld_client/LDClient/detection/IProcessDetection.cs @ a7d16717
1 |
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 |
/// <summary>
|
11 |
/// Periodically runs process detection. This method is instantiated
|
12 |
/// as a thread from the main class (Program.cs).
|
13 |
/// </summary>
|
14 |
public void RunPeriodicDetection(); |
15 |
}
|