You are here

function nusoapclient::getHTTPContentTypeCharset in Salesforce Suite 5.2

Same name and namespace in other branches
  1. 5 includes/nusoap.php \nusoapclient::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 nusoapclient::getHTTPContentTypeCharset()
nusoapclient::send in includes/nusoap.php
send the SOAP message

File

includes/nusoap.php, line 7132

Class

nusoapclient
nusoapclient higher level class for easy usage.

Code

function getHTTPContentTypeCharset() {
  return $this->soap_defencoding;
}