nop_method
Replace a method body with a NOP-sled to disable license or telemetry gates in .NET assemblies. The patched copy is written to a separate destination file, preserving the original assembly.
Instructions
Replace a method body with a NOP-sled (return default).
The patched copy is written to dst (must differ from path); the original is never modified. The round-trip preserves the type graph outside the NOPed method (counts of types / methods / fields / properties / events all unchanged).
Args:
path: source .NET assembly
method_fqn: e.g. "Namespace.Type::Method"
dst: destination path for the patched copy
confirm_legal: free-text audit-trail justification
Use case: stub a store-gate / license-gate / telemetry-gate method in a Mono / .NET launcher. Closes the CD-3 patch path (see See the RE-AI output directory. MainWindow.cs for the canonical example).
v2.8.0: returns status: not_implemented with a schema_for_replay
descriptor; v2.8.1 lands the round-trip backend.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| method_fqn | Yes | ||
| dst | No | ||
| confirm_legal | No |