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#
public void Notify(
	string message,
	NotificationType type,
	TimeSpan duration
)
Visual Basic
Public Sub Notify ( _
	message As String, _
	type As NotificationType, _
	duration As TimeSpan _
)

Parameters

message
Type: System..::..String
The textual message to display. This value should not be very long (less than 255 characters) as the value may not be wrapped.
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.

See Also