예제 #1
0
        public static ImageInfoRet Call(string url)
        {
            CallRet callRet = FileOpClient.Get(url);

            return(new ImageInfoRet(callRet));
        }
예제 #2
0
파일: Exif.cs 프로젝트: EnhWeb/csharp-sdk
        public static ExifRet Call(string url)
        {
            CallRet callRet = FileOpClient.Get(url);

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

            return(new ExifRet(callRet));
        }