XppPrePostArgs Class

The XppPrePostArgs class provides information about a publisher's arguments and return values for pre-handlers and post-handlers.

Syntax

Note

The syntax of this method varies based on the version of Microsoft Dynamics AX that you are using.

  Microsoft Dynamics AX 2012 R3
          class XppPrePostArgs extends Object

  Microsoft Dynamics AX 2012 R2 (SYS)
          class XppPrePostArgs extends Object

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          class XppPrePostArgs extends XppEventArgs

  Microsoft Dynamics AX 2012 (FPK)
          class XppPrePostArgs extends XppEventArgs

  Microsoft Dynamics AX 2012 (SYS)
          class XppPrePostArgs extends XppEventArgs

Run On

Called

Methods

  Method Description
Gg835235.pubmethod(en-us,AX.60).gif addArg Adds the name and value of the publisher's argument to the XppPrePostArgs instance.
Gg835235.pubmethod(en-us,AX.60).gif allowSetReturn Allows or disallows setting the publisher's return value.
Gg835235.pubmethod(en-us,AX.60).gif cancelTimeOut Cancels a previous method call to the setTimeOut method. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif equal Determines whether the specified object is equal to the current one. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif existsArg Checks the existence of the publisher's argument by name.
Gg835235.pubmethod(en-us,AX.60).gif getArg Retrieves the publisher's argument by name.
Gg835235.pubmethod(en-us,AX.60).gif getArgNum Retrieves the ;publisher's argument by index.
Gg835235.pubmethod(en-us,AX.60).gif getCalledWhen Retrieves a value that indicates whether the instance is currently serving a pre-handler or a post-handler.
Gg835235.pubmethod(en-us,AX.60).gif getReturnValue Gets the publisher's return value.
Gg835235.pubmethod(en-us,AX.60).gif getThis Gets the publisher's "this" reference.
Gg835235.pubmethod(en-us,AX.60).gif getTimeOutTimerHandle Returns the timer handle for the object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif handle Retrieves the handle of the class of the object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif isSetReturnAllowed Checks whether setting the publisher's return value is allowed.
Gg835235.pubmethod(en-us,AX.60).gif new Initializes a new instance of the Object class. (Overrides the new Method.)
Gg835235.pubmethod(en-us,AX.60).gif notify Releases the hold on an object that has called the wait method on this object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif notifyAll Releases a lock on the object that was issued by the wait method on this object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif objectOnServer Determines whether the object is on a server. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif owner Returns the instance that owns the object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif reset Resets the XppPrePostArgs instance by erasing all its information about the publisher's arguments and return value.
Gg835235.pubmethod(en-us,AX.60).gif setAddress Passes the publisher's variable bank address to the XppPrePostArgs instance for direct access.
Gg835235.pubmethod(en-us,AX.60).gif setArg Sets the publisher's argument by name.
Gg835235.pubmethod(en-us,AX.60).gif setArgNum Sets the publisher's argument by index.
Gg835235.pubmethod(en-us,AX.60).gif setCalledWhen Sets whether the instance is currently serving a pre-handler or a post-handler.
Gg835235.pubmethod(en-us,AX.60).gif setReturnValue Sets the publisher's return value.
Gg835235.pubmethod(en-us,AX.60).gif setTimeOut Sets up the scheduled execution of a specified method. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif toString Returns a string that represents the current object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif updateTableArgs Updates publisher arguments or a return value of table type.
Gg835235.pubmethod(en-us,AX.60).gif usageCount Returns the current number of references, that is, the value of the reference counter, that the object has. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif usingCopy Checks whether the current XppPrePostArgs instance is copying the publisher's arguments and return value into a separate storage (as opposed to accessing them directly).
Gg835235.pubmethod(en-us,AX.60).gif wait Pauses a process. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif xml Returns an XML string that represents the current object. (Inherited from Object.)
Gg835235.pubmethod(en-us,AX.60).gif Gg835235.static(en-us,AX.60).gif ::setReturnValueStatic Is a static method that sets the publisher's return value by using a specified instance of the XppPrePostArgs class.

Top

Remarks

A publisher is a method that exposes pre-events and post-events.

Inheritance Hierarchy

Object Class
  XppPrePostArgs Class