epoc32/include/http/rhttptransactionpropertyset.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
--- a/epoc32/include/http/rhttptransactionpropertyset.h	Tue Nov 24 13:55:44 2009 +0000
+++ b/epoc32/include/http/rhttptransactionpropertyset.h	Tue Mar 16 16:12:26 2010 +0000
@@ -1,1 +1,61 @@
-rhttptransactionpropertyset.h
+// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// 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
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+
+
+/**
+ @file RHTTPTransactionPropertySet.h
+ @warning : This file contains Rose Model ID comments - please do not delete
+*/
+
+#ifndef __RHTTPTRANSACTIONPROPERTYSET_H__
+#define __RHTTPTRANSACTIONPROPERTYSET_H__ 
+
+// System includes
+#include <http/rhttppropertyset.h>
+
+
+//##ModelId=3B1E670402C2
+class RHTTPTransactionPropertySet : public RHTTPPropertySet
+/** 
+The set of properties of a transaction. This is used by filters to
+store per-transaction information, and is also used by the client
+to specify transaction properties (such as no caching, reload and
+so on) 
+
+Transaction properties always take precendence over session properties.
+
+To lookup/change any of the following properties, use 
+RHTTPPropertySet::Property(...) and RHTTPPropertySet::SetPropertyL(...) 
+
+To remove properties, use RHTTPPropertySet::RemoveProperty(...) for a named property,
+or RHTTPPropertySet::RemoveAllProperties() for all.
+
+
+The following values are currently defined.
+
+HTTP::EProxyUsage (HTTP::EDoNotUseProxy | HTTP::EUseProxy)
+
+HTTP::EProxyAddress (A Uri for the Proxy server. Should include the port number
+if it is not the default of 8080)
+
+HTTP::EHttpPipelining (default HTTP::EEnablePipelining) (HTTP::EEnablePipelining | HTTP::EDisablePipelining)
+@publishedAll
+@released
+*/
+	{
+	};
+
+#endif //	__RHTTPTRANSACTIONPROPERTYSET_H__