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

    r3861 r7149  
    1212{
    1313
    14     static public class PwgGenericProxy<T>
     14    static internal class PwgGenericProxy<T>
    1515    {
    16        
    17         public static T Get(Uri address, String methodName, String methodParameter)
     16
     17        internal static T Get(Uri address, String methodName, String methodParameter)
    1818        {
    1919            T ReturnValue = default(T);
     
    7777        }
    7878
    79         public static T Post(Uri address, String data)
     79        internal static T Post(Uri address, String data)
    8080        {
    8181            T ReturnValue = default(T);
     
    144144        }
    145145
    146         public static T DeserializeObject(StreamReader xmlData)
     146        internal static T DeserializeObject(StreamReader xmlData)
    147147        {
    148148            T ReturnValue = default(T);
     
    167167        }
    168168
    169         public static void SerializeToXML(String fileName,T obj  )
     169        internal static void SerializeToXML(String fileName, T obj)
    170170        {
    171171            try
Note: See TracChangeset for help on using the changeset viewer.