IAlertServiceSend Method (String, String, String, String, NullableDateTime, NullableTimeSpan) | 
 
            Send an alert at the specified date/time, but only if deliverable within the specified date/time window.
            
 
    Namespace: 
   NetQuarry.Services
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxvoid Send(
	string userId,
	string subject,
	string body,
	string link,
	Nullable<DateTime> deliveryDateUTC,
	Nullable<TimeSpan> duration
)
Sub Send ( 
	userId As String,
	subject As String,
	body As String,
	link As String,
	deliveryDateUTC As Nullable(Of DateTime),
	duration As Nullable(Of TimeSpan)
)
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. - link
 - Type: SystemString
A link to the item within the application to which the alert applies, optional. - deliveryDateUTC
 - Type: SystemNullableDateTime
The date/time at which the alert is to be delivered.  If null, the alert is delivered ASAP. - duration
 - Type: SystemNullableTimeSpan
            The length of the delivery date/time window.  If the alert has not been delivered before
            that window expires it will not be delivered.
             
See Also