Implemented interface member:
method
GetEvents
System.Runtime.InteropServices._Type.GetEvents(System.Reflection.BindingFlags)
13 overrides of GetEvents
mscorlib (7)
system\reflection\emit\enumbuilder.cs (1)
230public override EventInfo[] GetEvents(BindingFlags bindingAttr)
system\reflection\emit\generictypeparameterbuilder.cs (1)
155public override EventInfo[] GetEvents(BindingFlags bindingAttr) { throw new NotSupportedException(); }
system\reflection\emit\symboltype.cs (1)
510public override EventInfo[] GetEvents(BindingFlags bindingAttr)
system\reflection\emit\typebuilder.cs (1)
1283public override EventInfo[] GetEvents(BindingFlags bindingAttr)
system\reflection\emit\typebuilderinstantiation.cs (1)
191public override EventInfo[] GetEvents(BindingFlags bindingAttr) { throw new NotSupportedException(); }
system\reflection\typedelegator.cs (1)
160public override EventInfo[] GetEvents(BindingFlags bindingAttr)
system\rttype.cs (1)
3092public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1323public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1323public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.Web (1)
Compilation\DelayLoadType.cs (1)
100public override EventInfo[] GetEvents(BindingFlags bindingAttr) {
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
386public override EventInfo[] GetEvents(BindingFlags bindingAttr)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
319public override EventInfo[] GetEvents(BindingFlags bindingAttr)
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
279public override EventInfo[] GetEvents(BindingFlags bindingAttr)
19 references to GetEvents
mscorlib (5)
system\reflection\RuntimeReflectionExtensions.cs (1)
30return type.GetEvents(everything);
system\reflection\typedelegator.cs (1)
162return typeImpl.GetEvents(bindingAttr);
system\reflection\typeinfo.cs (1)
138return GetEvents(Type.DeclaredOnlyLookup);
system\type.cs (2)
638return GetEvents(Type.DefaultLookup); 862e = GetEvents(bindingAttr);
System (1)
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1034EventInfo[] eventInfos = type.GetEvents(bindingFlags);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1325EventInfo[] infos = _baseReflectionType.GetEvents(bindingAttr);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1325EventInfo[] infos = _baseReflectionType.GetEvents(bindingAttr);
System.Web (3)
Compilation\ClientBuildManagerTypeDescriptionProviderBridge.cs (2)
109EventInfo[] runtimeEvents= type.GetEvents(bindingFlags); 116EventInfo[] reflectionEvents= reflectionType.GetEvents(bindingFlags);
Compilation\DelayLoadType.cs (1)
101return Type.GetEvents(bindingAttr);
System.Workflow.Activities (1)
EventSinkActivity.cs (1)
177foreach (EventInfo eventInfo in this.InterfaceType.GetEvents(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public))
System.Workflow.ComponentModel (6)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
808members = baseType.GetEvents(bindingAttr);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
322foreach (EventInfo eventInfo in this.runtimeType.GetEvents(bindingAttr))
AuthoringOM\Design\CustomActivityDesigner.cs (2)
417EventInfo[] events = customActivityType.GetEvents(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Instance); 551EventInfo[] events = customActivityType.GetEvents(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Instance);
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
681foreach (EventInfo eventInfo in typeToGetPropertiesOn.GetEvents(BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy))
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (1)
1414foreach (EventInfo evt in obj.GetType().GetEvents(BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy))
System.Workflow.Runtime (1)
DebugEngine\DebugController.cs (1)
1104foreach (EventInfo eventInfo in activity.GetType().GetEvents(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.FlattenHierarchy))