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/PwgTagsProxy.cs

    r3834 r7149  
    1010namespace Com.Piwigo.Lib.Proxy
    1111{
    12     static class PwgTagsProxy
     12    static internal class PwgTagsProxy
    1313    {
    14         static public PwgTagsProxyResponse pwg_tags_getList(Boolean? sortedByCounter)
     14        static internal PwgTagsProxyResponse pwg_tags_getList(Boolean? sortedByCounter)
    1515        {
    1616            PwgTagsProxyResponse response = null;
     
    2323
    2424                response = PwgGenericProxy<PwgTagsProxyResponse>.Get(
    25                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     25                                PwgConfigProxy.PwgServeurUri,
    2626                                "pwg.tags.getList", data.ToString());
    2727            }
     
    3434        }
    3535
    36         static public PwgTagsProxyResponse pwg_tags_getAdminList()
     36        static internal PwgTagsProxyResponse pwg_tags_getAdminList()
    3737        {
    3838            PwgTagsProxyResponse response = null;
     
    4040            {
    4141                response = PwgGenericProxy<PwgTagsProxyResponse>.Get(
    42                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     42                                PwgConfigProxy.PwgServeurUri,
    4343                                "pwg.tags.getAdminList", null);
    4444            }
     
    5151        }
    5252
    53         static public PwgImagesProxyResponse pwg_tags_getImages(List<Int32> tagsId,             
     53        static internal PwgImagesProxyResponse pwg_tags_getImages(List<Int32> tagsId,           
    5454                                                                    List<String>    tagsUrlName,
    5555                                                                    List<String>    tagsName,
     
    9898
    9999                response = PwgGenericProxy<PwgImagesProxyResponse>.Post(
    100                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     100                                PwgConfigProxy.PwgServeurUri,
    101101                                data.ToString());
    102102            }
     
    108108
    109109        }
    110         static public PwgAddRequestProxyResponse pwg_tag_add(string tagName)
     110        static internal PwgAddRequestProxyResponse pwg_tag_add(string tagName)
    111111        {
    112112            PwgAddRequestProxyResponse response = null;
     
    118118
    119119                response = PwgGenericProxy<PwgAddRequestProxyResponse>.Post(
    120                     PwgConfigProxy.PwgServeurUriBuilder.Uri,
     120                    PwgConfigProxy.PwgServeurUri,
    121121                    data.ToString());
    122122            }
Note: See TracChangeset for help on using the changeset viewer.