Class CilDispatchEventArgs
- Namespace
- Echo.Platforms.AsmResolver.Emulation.Dispatch
- Assembly
- Echo.Platforms.AsmResolver.dll
Provides arguments for CIL instruction dispatch events.
public class CilDispatchEventArgs : EventArgs
- Inheritance
-
CilDispatchEventArgs
- Inherited Members
Properties
Context
Gets the context that the instruction is evaluated in.
public CilExecutionContext Context { get; }
Property Value
Instruction
Gets the instruction that is being dispatched.
public CilInstruction Instruction { get; }
Property Value
IsHandled
Gets or sets a value indicating whether the instruction was handled or not.
public bool IsHandled { get; set; }
Property Value
Result
Gest or sets the dispatch result.
public CilDispatchResult Result { get; set; }