Interface IPatchHandle
- Namespace
- Concord
- Assembly
- Concord.Orchestration.dll
A disposable handle over one or more applied detours. Disposing reverts every detour the handle owns.
public interface IPatchHandle : IDisposable
- Inherited Members
Properties
Detours
Gets the underlying detour handles, so callers can inspect or revert them individually.
IReadOnlyList<IDetourHandle> Detours { get; }
Property Value
IsApplied
Gets a value indicating whether the handle's detours are currently applied. Returns true only while the handle is undisposed and all underlying detours are applied.
bool IsApplied { get; }