Implemented interface member:
method
GetAddMethod
System.Runtime.InteropServices._EventInfo.GetAddMethod(System.Boolean)
6 overrides of GetAddMethod
mscorlib (1)
system\reflection\eventinfo.cs (1)
413public override MethodInfo GetAddMethod(bool nonPublic)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1898public override MethodInfo GetAddMethod(bool nonPublic) { return _info.GetAddMethod(nonPublic); }
System.Core (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
71public override System.Reflection.MethodInfo GetAddMethod(bool nonPublic) {
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1898public override MethodInfo GetAddMethod(bool nonPublic) { return _info.GetAddMethod(nonPublic); }
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\EventInfo.cs (1)
53public override MethodInfo GetAddMethod(bool nonPublic)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1182public override MethodInfo GetAddMethod(bool nonPublic)
14 references to GetAddMethod
mscorlib (4)
system\attribute.cs (1)
172MethodInfo add = ev.GetAddMethod(true);
system\reflection\eventinfo.cs (3)
88return GetAddMethod(true); 110public MethodInfo GetAddMethod() { return GetAddMethod(false); } 163MethodInfo m = GetAddMethod(true);
PresentationBuildTasks (2)
Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
1066MethodInfo mi = ei.GetAddMethod(true); 1253MethodInfo mi = ei.GetAddMethod(true);
PresentationFramework (2)
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
1239MethodInfo mi = ei.GetAddMethod(true); 1253MethodInfo mi = ei.GetAddMethod(true);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1898public override MethodInfo GetAddMethod(bool nonPublic) { return _info.GetAddMethod(nonPublic); }
System.Core (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
72return _innerEventInfo.GetAddMethod(nonPublic);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1898public override MethodInfo GetAddMethod(bool nonPublic) { return _info.GetAddMethod(nonPublic); }
System.Workflow.Activities (1)
CorrelationValidator.cs (1)
845if (eventInfo == null || eventInfo.GetAddMethod(true) == null)
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1184MethodInfo methodInfo = this.eventInfo.GetAddMethod(nonPublic);
AuthoringOM\Compiler\TypeSystem\TypeProvider.cs (1)
639MethodInfo m = eventInfo.GetAddMethod(true);