1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 @warning : This file contains Rose Model ID comments - please do not delete
21 #ifndef __RHTTPTRANSACTIONPROPERTYSET_H__
22 #define __RHTTPTRANSACTIONPROPERTYSET_H__
25 #include <http/rhttppropertyset.h>
28 //##ModelId=3B1E670402C2
29 class RHTTPTransactionPropertySet : public RHTTPPropertySet
31 The set of properties of a transaction. This is used by filters to
32 store per-transaction information, and is also used by the client
33 to specify transaction properties (such as no caching, reload and
36 Transaction properties always take precendence over session properties.
38 To lookup/change any of the following properties, use
39 RHTTPPropertySet::Property(...) and RHTTPPropertySet::SetPropertyL(...)
41 To remove properties, use RHTTPPropertySet::RemoveProperty(...) for a named property,
42 or RHTTPPropertySet::RemoveAllProperties() for all.
45 The following values are currently defined.
47 HTTP::EProxyUsage (HTTP::EDoNotUseProxy | HTTP::EUseProxy)
49 HTTP::EProxyAddress (A Uri for the Proxy server. Should include the port number
50 if it is not the default of 8080)
52 HTTP::EHttpPipelining (default HTTP::EEnablePipelining) (HTTP::EEnablePipelining | HTTP::EDisablePipelining)
59 #endif // __RHTTPTRANSACTIONPROPERTYSET_H__