Function CSPResponse::WideWrite()
Description:
Same as the member function Write(), except that it writes wide-character data.
 |
Prototype:
bool WideWrite(const CSPWString& wstrText);
Arguments:
- const CSPWString& wstrText [IN]
Output text data.
Return value:
If successful, it returns true. Otherwise it returns false.
Examples:
Response.WideWrite( L"Some wide-char text" );
See also:
member functions Write(), BinaryWrite(), Flush() member variable Buffer
|
|