4 writes to removeMethod
System (4)
compmod\system\componentmodel\ReflectEventDescriptor.cs (4)
121this.removeMethod = desc.removeMethod; 327removeMethod = realEvent.GetRemoveMethod(); 345removeMethod = defined.GetRemoveMethod(); 366removeMethod = FindMethod(componentClass, "RemoveOn" + Name, argsType, typeof(void));
6 references to removeMethod
System (6)
compmod\system\componentmodel\ReflectEventDescriptor.cs (6)
121this.removeMethod = desc.removeMethod; 253Debug.Assert(removeMethod != null, "Null remove method for " + Name); 254FillSingleMethodAttribute(removeMethod, attributes); 331if (addMethod == null || removeMethod == null) { 367if (addMethod == null || removeMethod == null) { 472SecurityUtils.MethodInfoInvoke(removeMethod, component, new object[] { value });