Targeting System 2.0.0
Plugin for multipurpose targeting and visual effects.
|
Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event. More...
Properties | |
TSender | Sender [get] |
Gets the sender object that raised the event. More... | |
TEventArgs | EventArgs [get] |
Gets the event data that was generated by the event. More... | |
Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event.
TSender | The type of the sender that raised the event. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
TEventArgs | The type of the event data generated by the event. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
|
get |
Gets the event data that was generated by the event.
Implemented in UniRx.EventPattern< TSender, TEventArgs >.
|
get |
Gets the sender object that raised the event.
Implemented in UniRx.EventPattern< TSender, TEventArgs >.