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

Last change on this file since 3816 was 3816, checked in by bayral, 15 years ago

Initial import

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