예제 #1
0
        public static TelechargementPlus_PostDetail Load(string url, bool reload = false, bool loadImage = false)
        {
            TelechargementPlus_LoadDetail_v2 load = new TelechargementPlus_LoadDetail_v2(url);

            load.Load(reload, loadImage);
            return(load.Data);
        }
예제 #2
0
        public static TelechargementPlus_Post LoadDetailItem(TelechargementPlus_PostHeader header, bool reload = false, bool loadImage = false)
        {
            TelechargementPlus_PostDetail detail = TelechargementPlus_LoadDetail_v2.Load(header.urlDetail, reload, loadImage);

            return(new TelechargementPlus_Post {
                header = header, detail = detail
            });
        }