Gets the notification recipients.

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

Syntax

C#
EntityCollection<SnSubscriberEntity> GetNotificationRecipients(
	Type parentEntityType,
	Guid parentEntityId
)
Visual Basic
Function GetNotificationRecipients ( 
	parentEntityType As Type,
	parentEntityId As Guid
) As EntityCollection(Of SnSubscriberEntity)
Visual C++
EntityCollection<SnSubscriberEntity^>^ GetNotificationRecipients(
	Type^ parentEntityType, 
	Guid parentEntityId
)
F#
abstract GetNotificationRecipients : 
        parentEntityType : Type * 
        parentEntityId : Guid -> EntityCollection<SnSubscriberEntity> 

Parameters

parentEntityType
Type: System..::..Type
Parent entity type
parentEntityId
Type: System..::..Guid
Parent Id

Return Value

Type: EntityCollection<(Of <(<'SnSubscriberEntity>)>)>
Subscriber collection

See Also