Notify a list of subscribers that is passed as an argument to this method.

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

Syntax

C#
public bool Notify<S>(
	S arguments,
	List<string> recipients
)
where S : SubscribeArgs
Visual Basic
Public Function Notify(Of S As SubscribeArgs) ( 
	arguments As S,
	recipients As List(Of String)
) As Boolean
Visual C++
public:
generic<typename S>
where S : SubscribeArgs
bool Notify(
	S arguments, 
	List<String^>^ recipients
)
F#
member Notify : 
        arguments : 'S * 
        recipients : List<string> -> bool  when 'S : SubscribeArgs

Parameters

arguments
Type: S
Arguments.
recipients
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>
List of recipeints.

Type Parameters

S
Type of the arguments.

Return Value

Type: Boolean
True if subscribers are notified, otherwise False.

See Also