Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

send method

Transmits a data string to the server for processing.

Internet Explorer 8

 

Syntax


HRESULT retVal = object.send(varBody);

Parameters

varBody [in, optional]

Type: VARIANT

Receives a VARIANT of type BSTR 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

 

 

Show:
© 2017 Microsoft