Notifies the user using the supplied information.

Namespace: ININ.InteractionClient.AddIn
Assembly: ININ.InteractionClient.AddIn (in ININ.InteractionClient.AddIn.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
void Notify(
	string message,
	string caption,
	NotificationType type,
	TimeSpan duration
)
Visual Basic
Sub Notify ( _
	message As String, _
	caption As String, _
	type As NotificationType, _
	duration As TimeSpan _
)

Parameters

message
Type: System..::..String
The message to display. This value should not be very long (less than 255 characters) as the value may not be wrapped.
caption
Type: System..::..String
The caption to use in the notification area, if appropriate.
type
Type: ININ.InteractionClient.AddIn..::..NotificationType
The type of the notification. For example, Info or Warning.
duration
Type: System..::..TimeSpan
The duration of the notification. Specify MaxValue to indicate infinite duration.

Remarks

The notification is typically a desktop alert window, but can change depending on application context.

See Also