UtilDebugNetworkingEnableAntiNetworkDebugProtection Method
Enables Anti-Network Debugging protection for the current application.
This Anti-Network Debugging protection supports only these network protocol analyzers:
• Fiddler
• Wireshark
• WPE Pro
Namespace: DevCase.Core.Diagnostics.Debugging.NetworkingAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void EnableAntiNetworkDebugProtection(
Action callback
)
Public Shared Sub EnableAntiNetworkDebugProtection (
callback As Action
)
Dim callback As Action
UtilDebugNetworking.EnableAntiNetworkDebugProtection(callback)
public:
static void EnableAntiNetworkDebugProtection(
Action^ callback
)
static member EnableAntiNetworkDebugProtection :
callback : Action -> unit
No code example is currently available or this language may not be supported.
Parameters
- callback Action
-
An encapsulated method that will be invoked if a network debugger is detected.
Normally it should be a method containing instructions to terminate the current application.
This is a code example.
No code example is currently available or this language may not be supported.
Dim antiNetworkDebugCallback As Action =
Sub()
Environment.FailFast("Network debugger detected.")
End Sub
UtilDebug.EnableAntiNetworkDebugProtection(antiNetworkDebugCallback)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.