Gets the subscriber.

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

Syntax

C#
SnSubscriberEntity GetSubscriber(
	Type parentEntityType,
	Guid parentEntityId,
	Nullable<Guid> userId,
	string email
)
Visual Basic
Function GetSubscriber ( 
	parentEntityType As Type,
	parentEntityId As Guid,
	userId As Nullable(Of Guid),
	email As String
) As SnSubscriberEntity
Visual C++
SnSubscriberEntity^ GetSubscriber(
	Type^ parentEntityType, 
	Guid parentEntityId, 
	Nullable<Guid> userId, 
	String^ email
)
F#
abstract GetSubscriber : 
        parentEntityType : Type * 
        parentEntityId : Guid * 
        userId : Nullable<Guid> * 
        email : string -> SnSubscriberEntity 

Parameters

parentEntityType
Type: System..::..Type
Parent entity type
parentEntityId
Type: System..::..Guid
Parent entity Id
userId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
User Id
email
Type: System..::..String
Email

Return Value

Type: SnSubscriberEntity
Subscriber

See Also