4 overrides of EventType
System (1)
compmod\system\componentmodel\ReflectEventDescriptor.cs (1)
148public override Type EventType {
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1031public override Type EventType { get { return _parent.EventType; } }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1031public override Type EventType { get { return _parent.EventType; } }
System.Workflow.ComponentModel (1)
AuthoringOM\Design\PropertyDescriptors.cs (1)
997public override Type EventType
11 references to EventType
System (3)
compmod\system\componentmodel\ReflectEventDescriptor.cs (1)
116this.type = oldReflectEventDescriptor.EventType;
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (2)
556if (changedEvent != null && changedEvent.EventType.IsInstanceOfType(handler)) { 1003if (changedEvent != null && changedEvent.EventType.IsInstanceOfType(handler)) {
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1031public override Type EventType { get { return _parent.EventType; } }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1031public override Type EventType { get { return _parent.EventType; } }
System.Web (1)
UI\ControlBuilder.cs (1)
1098entry.HandlerType = eventDesc.EventType;
System.Web.Mobile (1)
UI\MobileControls\DeviceSpecificChoice.cs (1)
270Delegate d = Delegate.CreateDelegate(ed.EventType, Owner.MobilePage, value);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
923if (eventdesc.EventType == null) {
System.Workflow.ComponentModel (3)
AuthoringOM\Design\ActivityDesigner.cs (1)
1221handler = DesignerHelpers.CreateUniqueMethodName(Activity, eventDesc.Name, eventDesc.EventType);
AuthoringOM\Design\PropertyDescriptors.cs (1)
1001return this.realEventDescriptor.EventType;
AuthoringOM\Serializer\DependencyObjectCodeDomSerializer.cs (1)
151CodeDelegateCreateExpression listener = new CodeDelegateCreateExpression(new CodeTypeReference(eventDesc.EventType), new CodeThisReferenceExpression(), handler);