|
NotifierBaseNotify Method
|
Process a notification.
Namespace: GSF.Historian.NotifiersAssembly: GSF.Historian (in GSF.Historian.dll) Version: 2.4.246-beta
Syntaxpublic bool Notify(
string subject,
string message,
string details,
NotificationTypes notificationType
)
Public Function Notify (
subject As String,
message As String,
details As String,
notificationType As NotificationTypes
) As Boolean
public:
virtual bool Notify(
String^ subject,
String^ message,
String^ details,
NotificationTypes notificationType
) sealed
abstract Notify :
subject : string *
message : string *
details : string *
notificationType : NotificationTypes -> bool
override Notify :
subject : string *
message : string *
details : string *
notificationType : NotificationTypes -> bool
function Notify(subject, message, details, notificationType);
View SourceParameters
- subject String
- >Subject-matter for the notification.
- message String
- Brief message for the notification.
- details String
- Detailed message for the notification.
- notificationType NotificationTypes
- One of the NotificationTypes values.
Return Value
Booleantrue if notification is processed successfully; otherwise false.
Implements
INotifierNotify(String, String, String, NotificationTypes)
See Also