1 write to UnderlyingEvent
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
15UnderlyingEvent = @event;
23 references to UnderlyingEvent
System.Reflection.Context (23)
System\Reflection\Context\Custom\AttributeUtils.cs (1)
109EventInfo provider = evnt.UnderlyingEvent;
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (19)
20get { return UnderlyingEvent.Attributes; } 25get { return UnderlyingEvent.DeclaringType; } 30get { return UnderlyingEvent.EventHandlerType; } 35get { return UnderlyingEvent.IsMulticast; } 40get { return UnderlyingEvent.MetadataToken; } 45get { return UnderlyingEvent.Module; } 50get { return UnderlyingEvent.Name; } 55get { return UnderlyingEvent.ReflectedType; } 62UnderlyingEvent.AddEventHandler(target, handler); 67return UnderlyingEvent.GetAddMethod(nonPublic); 72return UnderlyingEvent.GetOtherMethods(nonPublic); 77return UnderlyingEvent.GetRaiseMethod(nonPublic); 82return UnderlyingEvent.GetRemoveMethod(nonPublic); 87return UnderlyingEvent.GetCustomAttributes(attributeType, inherit); 92return UnderlyingEvent.GetCustomAttributes(inherit); 97return UnderlyingEvent.GetCustomAttributesData(); 102return UnderlyingEvent.IsDefined(attributeType, inherit); 107UnderlyingEvent.RemoveEventHandler(target, handler); 112return UnderlyingEvent.ToString();
System\Reflection\Context\Projection\ProjectingEventInfo.cs (3)
86UnderlyingEvent.Equals(other.UnderlyingEvent); 91return Projector.GetHashCode() ^ UnderlyingEvent.GetHashCode();