11 lines
206 B
C++
11 lines
206 B
C++
#include <wininet/HTTPData.hpp>
|
|
|
|
String HTTPData::toString(void)const
|
|
{
|
|
String str;
|
|
|
|
str.reserve(1024);
|
|
for(int index=0;index<size();index++)str+=((Array<BYTE>&)*this).operator[](index);
|
|
return str;
|
|
}
|