Revize e6a01bd8
Přidáno uživatelem Pultak před více než 2 roky(ů)
ld_client/LDClient/detection/IProcessDetection.cs | ||
---|---|---|
1 |
namespace LDClient.detection { |
|
2 |
|
|
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 |
|
|
3 | 10 |
/// <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. |
|
11 |
/// Periodically runs process detection. This method is instantiated |
|
12 |
/// as a thread from the main class (Program.cs). |
|
7 | 13 |
/// </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 |
} |
|
14 |
public void RunPeriodicDetection(); |
|
16 | 15 |
} |
Také k dispozici: Unified diff
re #9712 Added documentation of the newly implemented methods + refactoring