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 );
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.