Implemented interface member:
method
GetEvents
System.Runtime.InteropServices._Type.GetEvents()
8 overrides of GetEvents
mscorlib (6)
system\reflection\emit\enumbuilder.cs (1)
188public override EventInfo[] GetEvents()
system\reflection\emit\generictypeparameterbuilder.cs (1)
140public override EventInfo[] GetEvents() { throw new NotSupportedException(); }
system\reflection\emit\symboltype.cs (1)
468public override EventInfo[] GetEvents()
system\reflection\emit\typebuilder.cs (1)
1222public override EventInfo[] GetEvents()
system\reflection\emit\typebuilderinstantiation.cs (1)
182public override EventInfo[] GetEvents() { throw new NotSupportedException(); }
system\reflection\typedelegator.cs (1)
141public override EventInfo[] GetEvents()
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1314public override EventInfo[] GetEvents()
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1314public override EventInfo[] GetEvents()
8 references to GetEvents
mscorlib (2)
system\reflection\emit\typebuilder.cs (1)
1228return m_bakedRuntimeType.GetEvents();
system\reflection\typedelegator.cs (1)
143return typeImpl.GetEvents();
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1316EventInfo[] infos = _baseReflectionType.GetEvents();
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1316EventInfo[] infos = _baseReflectionType.GetEvents();
System.Workflow.Activities (4)
LocalService\CorrelationResolver.cs (1)
274foreach (EventInfo member in this.interfaceType.GetEvents())
LocalService\CorrelationService.cs (2)
261EventInfo[] events = interfaceType.GetEvents(); 299EventInfo[] events = interfaceType.GetEvents();
LocalService\ExternalDataExchangeService.cs (1)
284EventInfo[] events = type.GetEvents();