SendNotification method

Send a notification to matching queues. Returns the number of matching queues.

Syntax
Visual Basic
Public Function SendNotification( _
   ByVal queueName As String, _
   ByVal eventName As String, _
   ByVal parameters As String _
) As Integer
C#
public int SendNotification(
   string  queueName,
   string  eventName,
   string  parameters
);
Parameters
  • queueName   The event queue name to be used.

  • eventName   The event name.

  • parameters   Parameters to pass.

Remarks

Send a notification to all queues matching the given name (including any such queue on the current connection). This call does not block. Use the special queue name "*" to send to all queues.

Returns the number of notifications sent (the number of matching queues).

See also