function soapclient::getHTTPContentTypeCharset in Salesforce Suite 5
Same name and namespace in other branches
- 5.2 includes/nusoap.orig.php \soapclient::getHTTPContentTypeCharset()
* gets the HTTP content type charset for the current request. * returns false for non-text content types. * * Note: getHTTPBody must be called before this. * *
Return value
string the HTTP content type charset for the current request. * @access private
1 call to soapclient::getHTTPContentTypeCharset()
- soapclient::send in includes/
nusoap.orig.php - send the SOAP message
File
- includes/
nusoap.orig.php, line 7093
Class
- soapclient
- soapclient higher level class for easy usage.
Code
function getHTTPContentTypeCharset() {
return $this->soap_defencoding;
}