C# Class LinFu.AOP.Cecil.GetInterceptionDisabled

Represents a class that emits the instructions that determine whether or not method interception is disabled.
Inheritance: IInstructionEmitter
ファイルを表示 Open project: philiplaureano/LinFu Class Usage Examples

Public Methods

Method Description
Emit ( Mono.Cecil.Cil.CilWorker IL ) : void

Emits the instructions that determine whether or not method interception is disabled.

GetInterceptionDisabled ( IMethodBodyRewriterParameters parameters ) : LinFu.AOP.Cecil.Interfaces

Initializes a new instance of the GetInterceptionDisabled class.

GetInterceptionDisabled ( MethodReference hostMethod, Mono.Cecil.Cil.VariableDefinition interceptionDisabled ) : LinFu.AOP.Cecil.Interfaces

Initializes a new instance of the GetInterceptionDisabled class.

Method Details

Emit() public method

Emits the instructions that determine whether or not method interception is disabled.
public Emit ( Mono.Cecil.Cil.CilWorker IL ) : void
IL Mono.Cecil.Cil.CilWorker The instance responsible for adding or removing instructions to the method body.
return void

GetInterceptionDisabled() public method

Initializes a new instance of the GetInterceptionDisabled class.
public GetInterceptionDisabled ( IMethodBodyRewriterParameters parameters ) : LinFu.AOP.Cecil.Interfaces
parameters IMethodBodyRewriterParameters The instance.
return LinFu.AOP.Cecil.Interfaces

GetInterceptionDisabled() public method

Initializes a new instance of the GetInterceptionDisabled class.
public GetInterceptionDisabled ( MethodReference hostMethod, Mono.Cecil.Cil.VariableDefinition interceptionDisabled ) : LinFu.AOP.Cecil.Interfaces
hostMethod Mono.Cecil.MethodReference The target method.
interceptionDisabled Mono.Cecil.Cil.VariableDefinition The local variable that determines whether or not method interception is disabled.
return LinFu.AOP.Cecil.Interfaces