MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / writeString

Method writeString

MonaCore/include/Mona/QueryWriter.h:43–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42 void writeNumber(double value) { String::Append(writer(), value); }
43 void writeString(const char* value, UInt32 size) { Util::EncodeURI(value,size, writer()); }
44 void writeBoolean(bool value) { writer().write(value ? "true" : "false"); }
45 void writeNull() { writer().write("null",4); }
46 UInt64 writeDate(const Date& date) { std::string buffer; writer().write(date.toString(Date::ISO8601_SHORT_FORMAT,buffer)); return 0; }

Callers 4

readOneMethod · 0.45
readOneMethod · 0.45
RTSPWriterClass · 0.45
HTTPWriterClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected