예제 #1
0
 public void GetVideosAsync(GetFundraisingPageVideosRequest request, Action<FundraisingPageVideos> callback)
 {
     var locationFormat = FundraisingPageVideosLocationFormat(request.PageShortName);
     HttpChannel.PerformRequestAsync("GET", locationFormat, request, callback);
 }
예제 #2
0
 public FundraisingPageVideos GetVideos(GetFundraisingPageVideosRequest request)
 {
     var locationFormat = FundraisingPageVideosLocationFormat(request.PageShortName);
     return HttpChannel.PerformRequest<FundraisingPageVideos>("GET", locationFormat);
 }