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

    r3835 r7149  
    1010namespace Com.Piwigo.Lib.Proxy
    1111{
    12     static class PwgCategoriesProxy
     12    static internal class PwgCategoriesProxy
    1313    {
    1414        /// <summary>
     
    1919        /// <param name="PublicOnly"></param>
    2020        /// <returns></returns>
    21         static public PwgCategoriesProxyResponse pwg_categories_getList(Int32? CategoryId,
     21        static internal PwgCategoriesProxyResponse pwg_categories_getList(Int32? CategoryId,
    2222            Boolean? Recursive, Boolean? PublicOnly)
    2323        {
     
    3333
    3434                response = PwgGenericProxy<PwgCategoriesProxyResponse>.Get(
    35                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     35                                PwgConfigProxy.PwgServeurUri,
    3636                                "pwg.categories.getList", data.ToString());
    3737            }
     
    4848        /// </summary>
    4949        /// <returns></returns>
    50         static public PwgCategoriesProxyResponse pwg_categories_getAdminList()
     50        static internal PwgCategoriesProxyResponse pwg_categories_getAdminList()
    5151        {
    5252            PwgCategoriesProxyResponse response = null;
     
    5454            {
    5555                response = PwgGenericProxy<PwgCategoriesProxyResponse>.Get(
    56                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     56                                PwgConfigProxy.PwgServeurUri,
    5757                                "pwg.categories.getAdminList", null);
    5858            }
     
    7171        /// <param name="IdUpperCat"></param>
    7272        /// <returns></returns>
    73         static public PwgAddRequestProxyResponse pwg_categories_add(String categorieName, Int32? IdUpperCat)
     73        static internal PwgAddRequestProxyResponse pwg_categories_add(String categorieName, Int32? IdUpperCat)
    7474        {
    7575            PwgAddRequestProxyResponse response = null;
     
    8383
    8484                response = PwgGenericProxy<PwgAddRequestProxyResponse>.Post(
    85                     PwgConfigProxy.PwgServeurUriBuilder.Uri,
     85                    PwgConfigProxy.PwgServeurUri,
    8686                    data.ToString());
    8787            }
     
    101101        /// <param name="categorieComment"></param>
    102102        /// <returns></returns>
    103         static public PwgBaseProxyReponse pwg_categories_setInfo(Int32 IdCat, String categorieName, String categorieComment)
     103        static internal PwgBaseProxyReponse pwg_categories_setInfo(Int32 IdCat, String categorieName, String categorieComment)
    104104        {
    105105            PwgBaseProxyReponse response = null;
     
    114114
    115115                response = PwgGenericProxy<PwgAddRequestProxyResponse>.Post(
    116                     PwgConfigProxy.PwgServeurUriBuilder.Uri,
     116                    PwgConfigProxy.PwgServeurUri,
    117117                    data.ToString());
    118118            }
     
    145145        /// <param name="withThumbnail"></param>
    146146        /// <returns></returns>
    147         static public PwgImagesProxyResponse pwg_categories_getImages(Int32 catId,
     147        static internal PwgImagesProxyResponse pwg_categories_getImages(Int32 catId,
    148148                                                            Boolean? recursive,
    149149                                                            Int32? perPage,
     
    188188
    189189                response = PwgGenericProxy<PwgImagesProxyResponse>.Post(
    190                                 PwgConfigProxy.PwgServeurUriBuilder.Uri,
     190                                PwgConfigProxy.PwgServeurUri,
    191191                                data.ToString());
    192192            }
     
    204204        /// <param name="tagName"></param>
    205205        /// <returns></returns>
    206         static public PwgAddRequestProxyResponse pwg_tag_add(string tagName)
     206        static internal PwgAddRequestProxyResponse pwg_tag_add(string tagName)
    207207        {
    208208            PwgAddRequestProxyResponse response = null;
     
    214214
    215215                response = PwgGenericProxy<PwgAddRequestProxyResponse>.Post(
    216                     PwgConfigProxy.PwgServeurUriBuilder.Uri,
     216                    PwgConfigProxy.PwgServeurUri,
    217217                    data.ToString());
    218218            }
Note: See TracChangeset for help on using the changeset viewer.