Ignore:
Timestamp:
Oct 10, 2010, 10:45:43 PM (14 years ago)
Author:
bayral
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Proxy/PwgSessionProxy.cs

    r3816 r7149  
    99namespace Com.Piwigo.Lib.Proxy
    1010{
    11     static class PwgSessionProxy
     11    static internal class PwgSessionProxy
    1212    {
    13         static public PwgSessionProxyResponse pwg_session_getStatus()
     13        static internal PwgSessionProxyResponse pwg_session_getStatus()
    1414        {
    1515            PwgSessionProxyResponse response = null;
     
    1717            {           
    1818            response = PwgGenericProxy<PwgSessionProxyResponse>.Get(
    19                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     19                                PwgConfigProxy.PwgServeurUri,
    2020                                "pwg.session.getStatus", null);
    2121            }
     
    2828        }
    2929
    30         static public PwgSessionProxyResponse pwg_session_login(string UserName, string Password)
     30        static internal PwgSessionProxyResponse pwg_session_login(string UserName, string Password)
    3131        {
    3232            PwgSessionProxyResponse response = null;
     
    4040
    4141                response = PwgGenericProxy<PwgSessionProxyResponse>.Post(
    42                     PwgConfigProxy.PwgServeurUriBuilder.Uri,
     42                    PwgConfigProxy.PwgServeurUri,
    4343                    data.ToString());
    4444            }
     
    5151        }
    5252
    53         static public PwgSessionProxyResponse pwg_session_logout()
     53        static internal PwgSessionProxyResponse pwg_session_logout()
    5454        {
    5555            PwgSessionProxyResponse response = null;
     
    6060
    6161                response = PwgGenericProxy<PwgSessionProxyResponse>.Post(
    62                     PwgConfigProxy.PwgServeurUriBuilder.Uri,
     62                    PwgConfigProxy.PwgServeurUri,
    6363                    data.ToString());
    6464            }
Note: See TracChangeset for help on using the changeset viewer.