Gets the notification recipients.

Note: If provider should use built-in recipients fetch do not override this function.

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

Syntax

C#
public virtual List<string> GetNotificationRecipients<T>(
	T arguments
)
where T : SubscribeArgs
Visual Basic
Public Overridable Function GetNotificationRecipients(Of T As SubscribeArgs) ( 
	arguments As T
) As List(Of String)
Visual C++
public:
generic<typename T>
where T : SubscribeArgs
virtual List<String^>^ GetNotificationRecipients(
	T arguments
)
F#
abstract GetNotificationRecipients : 
        arguments : 'T -> List<string>  when 'T : SubscribeArgs
override GetNotificationRecipients : 
        arguments : 'T -> List<string>  when 'T : SubscribeArgs

Parameters

arguments
Type: T
Event arguments

Type Parameters

T
Type of the event arguments

Return Value

Type: List<(Of <(<'String>)>)>
List of the recipients

See Also