1.1 --- a/epoc32/include/http/rhttptransactionpropertyset.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/http/rhttptransactionpropertyset.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,61 @@
1.4 -rhttptransactionpropertyset.h
1.5 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +// All rights reserved.
1.7 +// This component and the accompanying materials are made available
1.8 +// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.9 +// which accompanies this distribution, and is available
1.10 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +//
1.12 +// Initial Contributors:
1.13 +// Nokia Corporation - initial contribution.
1.14 +//
1.15 +// Contributors:
1.16 +//
1.17 +// Description:
1.18 +//
1.19 +
1.20 +
1.21 +
1.22 +/**
1.23 + @file RHTTPTransactionPropertySet.h
1.24 + @warning : This file contains Rose Model ID comments - please do not delete
1.25 +*/
1.26 +
1.27 +#ifndef __RHTTPTRANSACTIONPROPERTYSET_H__
1.28 +#define __RHTTPTRANSACTIONPROPERTYSET_H__
1.29 +
1.30 +// System includes
1.31 +#include <http/rhttppropertyset.h>
1.32 +
1.33 +
1.34 +//##ModelId=3B1E670402C2
1.35 +class RHTTPTransactionPropertySet : public RHTTPPropertySet
1.36 +/**
1.37 +The set of properties of a transaction. This is used by filters to
1.38 +store per-transaction information, and is also used by the client
1.39 +to specify transaction properties (such as no caching, reload and
1.40 +so on)
1.41 +
1.42 +Transaction properties always take precendence over session properties.
1.43 +
1.44 +To lookup/change any of the following properties, use
1.45 +RHTTPPropertySet::Property(...) and RHTTPPropertySet::SetPropertyL(...)
1.46 +
1.47 +To remove properties, use RHTTPPropertySet::RemoveProperty(...) for a named property,
1.48 +or RHTTPPropertySet::RemoveAllProperties() for all.
1.49 +
1.50 +
1.51 +The following values are currently defined.
1.52 +
1.53 +HTTP::EProxyUsage (HTTP::EDoNotUseProxy | HTTP::EUseProxy)
1.54 +
1.55 +HTTP::EProxyAddress (A Uri for the Proxy server. Should include the port number
1.56 +if it is not the default of 8080)
1.57 +
1.58 +HTTP::EHttpPipelining (default HTTP::EEnablePipelining) (HTTP::EEnablePipelining | HTTP::EDisablePipelining)
1.59 +@publishedAll
1.60 +@released
1.61 +*/
1.62 + {
1.63 + };
1.64 +
1.65 +#endif // __RHTTPTRANSACTIONPROPERTYSET_H__