AlertServiceSend Method (String, String, String, String, String, NullableDateTime, NullableDateTime) |
Send an alert to the specified user.
Namespace:
NetQuarry.Services
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public void Send(
string userId,
string subject,
string body,
string mop,
string pk,
Nullable<DateTime> deliveryDateUTC,
Nullable<DateTime> expireDateUTC
)
Public Sub Send (
userId As String,
subject As String,
body As String,
mop As String,
pk As String,
deliveryDateUTC As Nullable(Of DateTime),
expireDateUTC As Nullable(Of DateTime)
)
Parameters
- userId
- Type: SystemString
The target user for the alert. - subject
- Type: SystemString
The plain text subject of the alert. - body
- Type: SystemString
The body of the alert. Currently this must be plain text. - mop
- Type: SystemString
The MOP for the related item. - pk
- Type: SystemString
The primary key (really the RowKey) for the related item. - deliveryDateUTC
- Type: SystemNullableDateTime
The date/time at which the alert is to be delivered. If null, the alert is delivered ASAP. - expireDateUTC
- Type: SystemNullableDateTime
The date/time at which the alert expires and will no longer be delivered.
Implements
IAlertServiceSend(String, String, String, String, String, NullableDateTime, NullableDateTime)See Also