| 432 | private: |
| 433 | |
| 434 | bool writeHeader() { |
| 435 | static const vector<const char*> Patterns({ "Domain=", "Path=", "Expires=", "Secure", "HttpOnly" }); |
| 436 | if (_option >= 0) |
| 437 | String::Append(_buffer, "; ", Patterns[_option]); |
| 438 | return _option<=2; |
| 439 | } |
| 440 | |
| 441 | template <typename BufferClass, typename ...Args> |
| 442 | void writeContent(Args&&... args) { |
nothing calls this directly
no outgoing calls
no test coverage detected