コード例 #1
0
 public JobCreatePhotoset(DC context, string fullPath, string name, string month, string year, string photoid, string story)
     : base(context, fullPath)
 {
     Photoset = new Album();
     Photoset.Name = name;
     Photoset.Month = month;
     Photoset.Year = year;
     Photoset.Story = story;
     m_photoid = photoid;
 }
コード例 #2
0
 public JobGetPhotosets(DC context)
     : base(context, "None")
 {
 }
コード例 #3
0
 public JobUpdatePhotoWithPhotosetId(DC context, string fullPath, List<Photo> pl, Album a)
     : base(context, fullPath)
 {
     m_pl = pl;
     A = a;
 }
コード例 #4
0
 public JobFlickrUploader(DC context, string fullPath)
     : base(context, fullPath)
 {
 }
コード例 #5
0
 public NotUsedNowJobCreateTagList(DC context, DirectoryToUpload CurrentDirectory)
     : base(context, CurrentDirectory.DI.FullName)
 {
     m_CurrentDirectory = CurrentDirectory;
     m_tagsforalbum = "";
 }
コード例 #6
0
 public JobAddAlbumJob(DC context, string fullPath)
     : base(context, fullPath)
 {
 }
コード例 #7
0
 public TempJobUploadDescription(DC context, string fullPath, Photo p)
     : base(context, fullPath, p)
 {
 }
コード例 #8
0
 public TempJobUloadPhoto(DC context, string fullPath, Photo p)
     : base(context, fullPath, p)
 {
 }
コード例 #9
0
 public JobUploadPhoto(DC context, string fullPath, Photo p)
     : base(context, fullPath)
 {
     _photo = p;
 }
コード例 #10
0
ファイル: JobCityInfo.cs プロジェクト: nagyist/FlickrUploader
 public JobCityInfo(DC context, string fullPath, string city)
     : base(context, fullPath)
 {
     _city = city;
 }