Check if user subscription is active.

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

Syntax

C#
public Nullable<bool> IsActive<S>(
	S arguments
)
where S : SubscribeArgs
Visual Basic
Public Function IsActive(Of S As SubscribeArgs) ( 
	arguments As S
) As Nullable(Of Boolean)
Visual C++
public:
generic<typename S>
where S : SubscribeArgs
Nullable<bool> IsActive(
	S arguments
)
F#
member IsActive : 
        arguments : 'S -> Nullable<bool>  when 'S : SubscribeArgs

Parameters

arguments
Type: S
Arguments

Type Parameters

S
Type of the arguments

Return Value

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

See Also