Exemplo n.º 1
0
        public static async Task <ExifRet> CallAsync(string url)
        {
            CallRet callRet = await FileOpClient.GetAsync(url);

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

            return(new ImageInfoRet(callRet));
        }
Exemplo n.º 3
0
        public static ExifRet Call(string url)
        {
            CallRet callRet = FileOpClient.Get(url);

            return(new ExifRet(callRet));
        }
Exemplo n.º 4
0
        public async static Task <ImageInfoRet> Call(string url)
        {
            CallRet callRet = await FileOpClient.Get(url);

            return(new ImageInfoRet(callRet));
        }