public static ImageInfoRet Call(string url)
        {
            CallRet callRet = FileOpClient.Get(url);

            return(new ImageInfoRet(callRet));
        }
Exemple #2
0
        public static ExifRet Call(string url)
        {
            CallRet callRet = FileOpClient.Get(url);

            return(new ExifRet(callRet));
        }
Exemple #3
0
        public async static Task <ExifRet> Call(string url)
        {
            CallRet callRet = await FileOpClient.Get(url);

            return(new ExifRet(callRet));
        }