PendingCall.myCall

Availability

Flash Player 6 (6.0.79.0).

Edition

Flash MX Professional 2004.

Usage

PendingCall.myCall

Description

Property; the SOAPCall object corresponding to the PendingCall operation. The SOAPCall object contains information about the web service operation, and provides control over certain behaviors. For more information, see SOAPCall class.

Example

The following onResult callback traces the name of the SOAPCall operation.

callback.onResult = function(result)
{
    // Check my operation name.
    trace("My operation name is " + this.myCall.name);
}