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

Last change on this file since 7149 was 7149, checked in by bayral, 14 years ago

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File size: 596 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    internal static class PwgConfigProxy
10    {
11        internal static String PwgUserAgent = "PiwigoLib.GenericProxy";
12        internal static Boolean PwgKeepAlive = false;
13        internal static Int16 PwgTimeOutInSecond = 15;
14
15        internal static Uri PwgServeurUri = null; // store uri piece of the server
16
17        internal static CookieContainer cookieContainer = new CookieContainer(); // store cookie as session once
18
19    }
20}
Note: See TracBrowser for help on using the repository browser.