IXR_Message::IXR_Message() WordPress Method
The IXR_Message class is used to create an XML-RPC message. It can be used to create both requests and responses. Requests are used to call methods on a remote XML-RPC server. Responses are used to return the result of a method call back to the client. The class takes two parameters: an action and a data. The action is a string that specifies the XML-RPC method to call. The data is an array of parameters to pass to the method. Once the message is created, it can be serialized to XML using the toXML() method.
IXR_Message::IXR_Message( $message ) #
PHP4 constructor.
Source
File: wp-includes/IXR/class-IXR-message.php
public function IXR_Message( $message ) { self::__construct( $message ); }
Expand full source codeCollapse full source codeView on TracView on GitHub