send method
Transmits a data string to the server for processing.
![]() |
Syntax
var retval = XDomainRequest.send(varBody);Parameters
- varBody [in, optional]
-
Type: Variant
Receives a Variant of type String containing the data to transmit to the server. If omitted, the behavior is identical to that of sending an empty string ( "" ).
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Examples
// 1. Create XDR object
xdr = new XDomainRequest();
// 2. Open connection with server using POST method
xdr.open("POST", "http://www.contoso.com/xdr.txt");
// 3. Send string data to server
xdr.send("data to be processed");
See also
- Reference
- IHTMLXDomainRequest
- XDomainRequest
Send comments about this topic to Microsoft
Build date: 11/29/2012
