source: extensions/PiwigoLib/PiwigoLib/Proxy/PwgConfigProxy.cs @ 11850

Last change on this file since 11850 was 11850, checked in by bayral, 13 years ago

MAj des truc existant et debut du upload de fichier

File size: 521 bytes
Line 
1using System;
2using System.Net;
3
4namespace Com.Piwigo.Lib.Proxy
5{
6    internal static class PwgConfigProxy
7    {
8        internal static String PwgUserAgent = "PiwigoLib.GenericProxy";
9        internal static Boolean PwgKeepAlive = false;
10        internal static Int16 PwgTimeOutInSecond = 15;
11
12        internal static Uri PwgServeurUri = null; // store uri piece of the server
13
14        internal static CookieContainer cookieContainer = new CookieContainer(); // store cookie as session once
15
16    }
17}
Note: See TracBrowser for help on using the repository browser.