C# Class LinFu.AOP.Cecil.Extensions.TypeDefinitionExtensions

Adds helper methods to the TypeDefinition class.
Exibir arquivo Open project: philiplaureano/LinFu

Public Methods

Method Description
WeaveWith ( this targetType, IMethodWeaver weaver ) : void

Applies a IMethodWeaver instance to all methods within the given targetType.

Method Details

WeaveWith() public static method

Applies a IMethodWeaver instance to all methods within the given targetType.
public static WeaveWith ( this targetType, IMethodWeaver weaver ) : void
targetType this The target module.
weaver IMethodWeaver The instance that will modify the methods in the given target type.
return void