4 references to FindMethod
System (4)
compmod\system\componentmodel\ReflectEventDescriptor.cs (2)
365
addMethod =
FindMethod
(componentClass, "AddOn" + Name, argsType, typeof(void));
366
removeMethod =
FindMethod
(componentClass, "RemoveOn" + Name, argsType, typeof(void));
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (2)
356
getMethod =
FindMethod
(componentClass, "Get" + Name, new Type[] { receiverType }, type);
489
setMethod =
FindMethod
(componentClass, "Set" + Name,