Implemented interface member:
property
EventHandlerType
System.Runtime.InteropServices._EventInfo.EventHandlerType
48 references to EventHandlerType
mscorlib (1)
system\reflection\eventinfo.cs (1)
191Type cl = EventHandlerType;
PresentationBuildTasks (5)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
1845eventHandlerType = ei.EventHandlerType;
Framework\System\Windows\Markup\XamlTypeMapper.cs (4)
1407if (!IsAllowedEventDelegateType(ei.EventHandlerType)) 1412ThrowException(SRID.ParserEventDelegateTypeNotAccessible, ei.EventHandlerType.FullName, objectType.Name + "." + localName); 1567if (!IsAllowedEventDelegateType(ei.EventHandlerType)) 1572ThrowException(SRID.ParserEventDelegateTypeNotAccessible, ei.EventHandlerType.FullName, owner.Name + "." + localName);
PresentationFramework (10)
src\Framework\MS\Internal\Data\StaticPropertyChangedEventManager.cs (4)
287Delegate d = Delegate.CreateDelegate(spcEvent.EventHandlerType, this, OnStaticPropertyChangedMethodInfo); 297Delegate d = Delegate.CreateDelegate(spcEvent.EventHandlerType, this, OnStaticPropertyChangedMethodInfo); 617Delegate d = Delegate.CreateDelegate(eventInfo.EventHandlerType, this, OnStaticPropertyChangedMethodInfo); 628Delegate d = Delegate.CreateDelegate(eventInfo.EventHandlerType, this, OnStaticPropertyChangedMethodInfo);
src\Framework\System\Windows\Markup\BamlRecordReader.cs (2)
2907ei.EventHandlerType, 2912ThrowException(SRID.ParserCantCreateDelegate, ei.EventHandlerType.Name, attribValue);
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (4)
1409if (!ReflectionHelper.IsPublicType(ei.EventHandlerType)) 1412ThrowException(SRID.ParserEventDelegateTypeNotAccessible, ei.EventHandlerType.FullName, objectType.Name + "." + localName); 1569if (!ReflectionHelper.IsPublicType(ei.EventHandlerType)) 1572ThrowException(SRID.ParserEventDelegateTypeNotAccessible, ei.EventHandlerType.FullName, owner.Name + "." + localName);
System (2)
compmod\system\componentmodel\ReflectEventDescriptor.cs (2)
346type = defined.EventHandlerType; 349type = realEvent.EventHandlerType;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
337if (info != null) reflectMemberType = TypeDescriptor.GetReflectionType(info.EventHandlerType);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
337if (info != null) reflectMemberType = TypeDescriptor.GetReflectionType(info.EventHandlerType);
System.Data.Linq (1)
SqlClient\Common\TypeSystem.cs (1)
78if (ei != null) return ei.EventHandlerType;
System.Web (1)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (1)
1383Type eventHandlerType = eventInfo.EventHandlerType;
System.Web.Extensions (2)
UI\AsyncPostBackTrigger.cs (2)
107MethodInfo handlerMethod = eventInfo.EventHandlerType.GetMethod("Invoke"); 115Delegate handler = Delegate.CreateDelegate(eventInfo.EventHandlerType, this, EventHandler);
System.Workflow.Activities (9)
Common\CompModHelpers.cs (2)
787if (eventInfo.EventHandlerType != null) 788return eventInfo.EventHandlerType;
CorrelationValidator.cs (2)
413delegateType = eventInfo.EventHandlerType; 850Type delegateType = eventInfo.EventHandlerType;
EventSinkActivity.cs (1)
198MethodInfo methodInfo = eventInfo.EventHandlerType.GetMethod("Invoke");
Executors\InboundActivityHelper.cs (1)
84MethodInfo methodInfo = eventInfo.EventHandlerType.GetMethod("Invoke");
LocalService\CorrelationResolver.cs (2)
396customAttrs = eventInfo.EventHandlerType.GetCustomAttributes(typeof(CorrelationAliasAttribute), true); 398MethodInfo[] methInfo = eventInfo.EventHandlerType.GetMethods();
LocalService\WorkflowMessageEventHandler.cs (1)
59this.eventHandlerType = eventInfo.EventHandlerType;
System.Workflow.ComponentModel (14)
AuthoringOM\Bind.cs (2)
107memberType = evt.EventHandlerType; 1256return eventInfo.EventHandlerType;
AuthoringOM\Compiler\Validation\BindValidator.cs (2)
858memberType = ((EventInfo)(memberInfo)).EventHandlerType; 896memberType = ((EventInfo)(memberInfo)).EventHandlerType;
AuthoringOM\Design\CustomActivityDesigner.cs (5)
420if (evt.EventHandlerType == null) 422CustomProperty eventProperty = CreateCustomProperty(serviceProvider, customActivityType, evt, evt.EventHandlerType); 558evtInfo.EventHandlerType.FullName == customProperty.oldPropertyType) 564if (!found && evtInfo.Name != null && evtInfo.EventHandlerType != null) 565memberCreationService.RemoveEvent(customActivityType.FullName, evtInfo.Name, evtInfo.EventHandlerType);
AuthoringOM\Design\PropertyDescriptors.cs (1)
489addMember = TypeProvider.IsAssignable(memberType, eventInfo.EventHandlerType);
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (2)
831propertyInfoType = evt.EventHandlerType; 1949eventType = evt.EventHandlerType;
Shared\CompModHelpers.cs (2)
785if (eventInfo.EventHandlerType != null) 786return eventInfo.EventHandlerType;
WindowsBase (1)
Base\System\Windows\WeakEventManagerT.cs (1)
33_handler = Delegate.CreateDelegate(_eventInfo.EventHandlerType, this, DeliverEventMethodInfo);