File indexing completed on 2024-09-08 03:38:47
0001 /* 0002 This file is part of the KDE libraries 0003 SPDX-FileCopyrightText: 2002 Jan-Pascal van Best <janpascal@vanbest.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef KIOWORKER_HTTPMETHOD_P_H_ 0009 #define KIOWORKER_HTTPMETHOD_P_H_ 0010 0011 namespace KIO 0012 { 0013 /** HTTP / DAV method **/ 0014 enum HTTP_METHOD { 0015 HTTP_GET, 0016 HTTP_PUT, 0017 HTTP_POST, 0018 HTTP_HEAD, 0019 HTTP_DELETE, 0020 HTTP_OPTIONS, 0021 DAV_PROPFIND, 0022 DAV_PROPPATCH, 0023 DAV_MKCOL, 0024 DAV_COPY, 0025 DAV_MOVE, 0026 DAV_LOCK, 0027 DAV_UNLOCK, 0028 DAV_SEARCH, 0029 DAV_SUBSCRIBE, 0030 DAV_UNSUBSCRIBE, 0031 DAV_POLL, 0032 DAV_NOTIFY, 0033 DAV_REPORT, 0034 HTTP_UNKNOWN = -1, 0035 }; 0036 0037 } 0038 0039 #endif