Implemented interface member:
method
GetRemoveMethod
System.Runtime.InteropServices._EventInfo.GetRemoveMethod(System.Boolean)
6 overrides of GetRemoveMethod
mscorlib (1)
system\reflection\eventinfo.cs (1)
421public override MethodInfo GetRemoveMethod(bool nonPublic)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1900public override MethodInfo GetRemoveMethod(bool nonPublic) { return _info.GetRemoveMethod(nonPublic); }
System.Core (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
79public override System.Reflection.MethodInfo GetRemoveMethod(bool nonPublic) {
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1900public override MethodInfo GetRemoveMethod(bool nonPublic) { return _info.GetRemoveMethod(nonPublic); }
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\EventInfo.cs (1)
72public override MethodInfo GetRemoveMethod(bool nonPublic)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1196public override MethodInfo GetRemoveMethod(bool nonPublic)
6 references to GetRemoveMethod
mscorlib (2)
system\reflection\eventinfo.cs (2)
96return GetRemoveMethod(true); 112public MethodInfo GetRemoveMethod() { return GetRemoveMethod(false); }
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1900public override MethodInfo GetRemoveMethod(bool nonPublic) { return _info.GetRemoveMethod(nonPublic); }
System.Core (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
80return _innerEventInfo.GetRemoveMethod(nonPublic);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1900public override MethodInfo GetRemoveMethod(bool nonPublic) { return _info.GetRemoveMethod(nonPublic); }
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1198MethodInfo methodInfo = this.eventInfo.GetRemoveMethod(nonPublic);