Gets the parsed notification template in plain or text format.

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

Syntax

C#
public abstract string GetNotificationTemplatePlain<T>(
	T arguments
)
where T : SubscribeArgs
Visual Basic
Public MustOverride Function GetNotificationTemplatePlain(Of T As SubscribeArgs) ( 
	arguments As T
) As String
Visual C++
public:
generic<typename T>
where T : SubscribeArgs
virtual String^ GetNotificationTemplatePlain(
	T arguments
) abstract
F#
abstract GetNotificationTemplatePlain : 
        arguments : 'T -> string  when 'T : SubscribeArgs

Parameters

arguments
Type: T
Event arguments

Type Parameters

T
Type of the event arguments

Return Value

Type: String
Parsed notification template

See Also