/src/LinFu.Proxy.Interfaces/IProxyMethodBuilder.cs
http://github.com/philiplaureano/LinFu · C# · 19 lines · 3 code · 0 blank · 16 comment · 0 complexity · ebc553efaac096a0f8915b0e31e22f1b MD5 · raw file
- namespace LinFu.Proxy.Interfaces
- {
- ///// <summary>
- ///// Represents a class that is responsible for
- ///// generating proxy methods on a target type.
- ///// </summary>
- //public interface IProxyMethodBuilder
- //{
- // /// <summary>
- // /// Generates a proxy method on the <paramref name="targetType"/>
- // /// that overrides the existing <paramref name="method"/>
- // /// implementation.
- // /// </summary>
- // /// <param name="targetType"></param>
- // /// <param name="method"></param>
- // void CreateMethod(TypeDefinition targetType,
- // MethodInfo method);
- //}
- }