Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsMulticast

virtual bool System.Reflection.EventInfo.IsMulticast
getinherited

Definition at line 20 of file EventInfo.cs.

21 {
22 get
23 {
24 Type eventHandlerType = EventHandlerType;
25 Type typeFromHandle = typeof(MulticastDelegate);
26 return typeFromHandle.IsAssignableFrom(eventHandlerType);
27 }
28 }
virtual ? Type EventHandlerType
Definition EventInfo.cs:31