Ignore:
Timestamp:
Sep 3, 2009, 4:03:22 PM (15 years ago)
Author:
bayral
Message:

get Tags List support

File:
1 edited

Legend:

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

    r3816 r3818  
    3030
    3131        }
     32
     33        static public PwgTagsProxyResponse pwg_tags_getAdminList()
     34        {
     35            PwgTagsProxyResponse response = null;
     36            try
     37            {
     38                response = PwgGenericProxy<PwgTagsProxyResponse>.Get(
     39                                PwgConfigProxy.PwgServeurUriBuilder.Uri,
     40                                "pwg.tags.getAdminList", null);
     41            }
     42            catch (Exception ex)
     43            {
     44                throw new PwgProxyException("pwg_tags_getAdminList", ex);
     45            }
     46            return response;
     47
     48        }
     49
    3250    }
    3351
Note: See TracChangeset for help on using the changeset viewer.