| 46 | [[nodiscard]] bool hasFileName() const { return disposition.hasFileName; } |
| 47 | [[nodiscard]] bool isField() const { return isFormData() and hasFieldName() and not hasFileName(); } |
| 48 | [[nodiscard]] bool isFile() const { return isFormData() and hasFieldName() and hasFileName(); } |
| 49 | [[nodiscard]] bool hasSafeFileName() const; |
| 50 | [[nodiscard]] bool isSafeFile() const { return isFile() and hasSafeFileName(); } |
| 51 | }; |
no test coverage detected