Searched refs:innerMethod (Results 1 – 1 of 1) sorted by relevance
229 private Delegate WrapExport(Type delegateType, MethodInfo innerMethod) in WrapExport() argument234 Type[] paramTypes = innerMethod.GetParameters().Select(p => p.ParameterType).ToArray(); in WrapExport()237 …var attacheeWrapper = new DynamicMethod(innerMethod.Name + "Wrapper", innerMethod.ReturnType, para… in WrapExport()240 if(innerMethod.ReturnType != typeof(void)) in WrapExport()242 retval = il.DeclareLocal(innerMethod.ReturnType); in WrapExport()254 il.EmitCall(OpCodes.Call, innerMethod, null); in WrapExport()