Delta.getMessage()

Availability

Flash Player 7.

Edition

Flash MX Professional 2004.

Usage

delta.getMessage()

Parameters

None.

Returns

A string; returns the message associated with delta.

Description

Method; returns the associated message for this delta. Typically this message is only populated if the delta packet has been returned from a server in response to attempted updates. For more information, see RDBMSResolver component.

Example

The following example calls the getMessage() method:

//...
var dpi:Iterator = dp.getIterator();
var d:Delta;
while(dpi.hasNext()) {
  d= dpi.next();
  trace(d.getMessage());
}
//...