Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API reference » ULConnection class

 

GetNotificationParameter method

Get value of a parameter, for an event just read by GetNotification().

Syntax
Visual Basic
Public Function GetNotificationParameter( _
   ByVal queueName As String, _
   ByVal parameterName As String _
) As String
C#
public string  GetNotificationParameter(
   string  queueName,
   string  parameterName
);
Parameters
  • queueName   The name of the queue which will be waited upon.

  • parameterName   The name of the parameter whose value should be returned.

Remarks

Get a parameter for the event notification just read by ULGetNotification(). Only the parameters from the most-recently read notification on the given queue are available.

Returns parameter value if the parameter was found; otherwise, returns null.

See also