public interface ICommandSource<out TEventArgs> : ICommandSource
where TEventArgs : EventArgs
Public Interface ICommandSource(Of Out TEventArgs As EventArgs)
Inherits ICommandSource
generic<typename TEventArgs>
where TEventArgs : EventArgs
public interface class ICommandSource : ICommandSource
type ICommandSource<'TEventArgs when 'TEventArgs : EventArgs> =
interface
interface ICommandSource
end
EventArgs | Gets a TEventArgs instance containing the event data. |
Sender |
Gets the sender of the underlying event. For instance events, this is usually the same as Source, but it can be different in some cases,
for example when the add/remove accessors of the event map the subscription to another object's event. For static events the sender is usually .
(Inherited from ICommandSource) |
Source |
Gets the source of the invocation. For instance events, this is the object that owns the event. For static events, this is the declaring type of the event.
(Inherited from ICommandSource) |
TriggeringEvent |
Gets the triggering event of the source object.
(Inherited from ICommandSource) |