Implemented interface member:
method
GetRaiseMethod
System.Runtime.InteropServices._EventInfo.GetRaiseMethod(System.Boolean)
6 overrides of GetRaiseMethod
mscorlib (1)
system\reflection\eventinfo.cs (1)
429public override MethodInfo GetRaiseMethod(bool nonPublic)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1899public override MethodInfo GetRaiseMethod(bool nonPublic) { return _info.GetRaiseMethod(nonPublic); }
System.Core (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
75public override System.Reflection.MethodInfo GetRaiseMethod(bool nonPublic) {
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1899public override MethodInfo GetRaiseMethod(bool nonPublic) { return _info.GetRaiseMethod(nonPublic); }
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\EventInfo.cs (1)
91public override MethodInfo GetRaiseMethod(bool nonPublic)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1189public override MethodInfo GetRaiseMethod(bool nonPublic)
6 references to GetRaiseMethod
mscorlib (2)
system\reflection\eventinfo.cs (2)
104return GetRaiseMethod(true); 114public MethodInfo GetRaiseMethod() { return GetRaiseMethod(false); }
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1899public override MethodInfo GetRaiseMethod(bool nonPublic) { return _info.GetRaiseMethod(nonPublic); }
System.Core (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
76return _innerEventInfo.GetRaiseMethod(nonPublic);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1899public override MethodInfo GetRaiseMethod(bool nonPublic) { return _info.GetRaiseMethod(nonPublic); }
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1191MethodInfo methodInfo = this.eventInfo.GetRaiseMethod(nonPublic);