释义 |
CHttpServerContext::operator <<
void operator <<( LPCTSTR psz ); void operator <<( long int dw ); void operator <<( short int w ); void operator <<( const CHtmlStream& Stream); void operator <<( double d ); void operator <<( float f ); CHttpServerContext& operator <<( const CLongBinary& blob ); CHttpServerContext& operator <<( const CByteArray& array );
说明: CHttpServerContext插入(<<)操作符将指定的字符串或整数写入CHttpServer-Context对象的HTML流中。此操作符的字符串版本将字符串不作更改地写入。整数覆盖在写入前将值转化为十进制形式。 此操作符参数直接与你能在ISAPI文法分析映射中使用的ITS_types相符合。
请参阅: Internet Server API (ISAPI) Parse Maps, ISAPI Extensions: ParseMaps |