Subscribe a user.

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

Syntax

C#
public bool Subscribe<S>(
	string email,
	S arguments
)
where S : SubscribeArgs
Visual Basic
Public Function Subscribe(Of S As SubscribeArgs) ( 
	email As String,
	arguments As S
) As Boolean
Visual C++
public:
generic<typename S>
where S : SubscribeArgs
bool Subscribe(
	String^ email, 
	S arguments
)
F#
member Subscribe : 
        email : string * 
        arguments : 'S -> bool  when 'S : SubscribeArgs

Parameters

email
Type: System..::..String
Email
arguments
Type: S
Arguments

Type Parameters

S
Type of the arguments

Return Value

Type: Boolean
True if subscribed, otherwise False

See Also