Called when subscribers are notified.

Namespace: MonoSoftware.MonoX.SubscribeEngine
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual void Notified<T>(
	EventArgs<T> arguments
)
where T : SubscribeArgs
Visual Basic
Public Overridable Sub Notified(Of T As SubscribeArgs) ( 
	arguments As EventArgs(Of T)
)
Visual C++
public:
generic<typename T>
where T : SubscribeArgs
virtual void Notified(
	EventArgs<T>^ arguments
)
F#
abstract Notified : 
        arguments : EventArgs<'T> -> unit  when 'T : SubscribeArgs
override Notified : 
        arguments : EventArgs<'T> -> unit  when 'T : SubscribeArgs

Parameters

arguments
Type: MonoSoftware.Core..::..EventArgs<(Of <(<'T>)>)>
Event arguments

Type Parameters

T
Type of the event arguments

See Also