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