Check if user subscription is active.

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

Syntax

C#
Nullable<bool> IsActive(
	Nullable<Guid> userId,
	string email,
	SubscribeArgs args
)
Visual Basic
Function IsActive ( 
	userId As Nullable(Of Guid),
	email As String,
	args As SubscribeArgs
) As Nullable(Of Boolean)
Visual C++
Nullable<bool> IsActive(
	Nullable<Guid> userId, 
	String^ email, 
	SubscribeArgs^ args
)
F#
abstract IsActive : 
        userId : Nullable<Guid> * 
        email : string * 
        args : SubscribeArgs -> Nullable<bool> 

Parameters

userId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
User Id
email
Type: System..::..String
Email
args
Type: MonoSoftware.MonoX.SubscribeEngine..::..SubscribeArgs
Event arguments

Return Value

Type: Nullable<(Of <(<'Boolean>)>)>
True if active, otherwise False and null if there is no subscription

See Also