Exemplo n.º 1
0
 /// <summary>
 /// For backward compatibility with old wrappers.
 /// </summary>
 public PictureManagerDetailsType GetPictureManagerDetails(string PictureURL, PictureManagerDetailLevelCodeType PictureManagerDetailLevel)
 {
     this.PictureURL = PictureURL;
     this.PictureManagerDetailLevel = PictureManagerDetailLevel;
     Execute();
     return this.PictureManagerDetails;
 }
Exemplo n.º 2
0
 /// <summary>
 /// For backward compatibility with old wrappers.
 /// </summary>
 public PictureManagerDetailsType GetPictureManagerDetails(PictureManagerDetailLevelCodeType PictureManagerDetailLevel)
 {
     this.PictureManagerDetailLevel = PictureManagerDetailLevel;
     Execute();
     return this.PictureManagerDetails;
 }
Exemplo n.º 3
0
 /// <summary>
 /// For backward compatibility with old wrappers.
 /// </summary>
 public PictureManagerDetailsType GetPictureManagerDetails(int FolderID, PictureManagerDetailLevelCodeType PictureManagerDetailLevel)
 {
     this.FolderID = FolderID;
     this.PictureManagerDetailLevel = PictureManagerDetailLevel;
     Execute();
     return this.PictureManagerDetails;
 }
Exemplo n.º 4
0
        /// <summary>
        /// <table>
        /// <tr>
        /// <td class="notebox">
        /// <b>Note:</b> This call will soon be deprecated. Use accordingly.
        /// </td>
        /// </tr>
        /// </table>
        /// 
        /// Requests information about folders or pictures in a Picture Manager account
        /// or the account settings.
        /// </summary>
        /// 
        /// <param name="FolderID">
        /// The ID of a folder in the user's Picture Manager album for which you want information.
        /// If you specify both FolderID and PictureURL, the picture must exist
        /// in the folder.
        /// </param>
        ///
        /// <param name="PictureURL">
        /// The URL of a picture in the user's Picture Manager album.
        /// If you specify both FolderID and PictureURL, the picture must
        /// exist in the folder.
        /// </param>
        ///
        /// <param name="PictureManagerDetailLevel">
        /// The type of information you want returned, about pictures and folders,
        /// the account subscription, or both. Use this element rather than the generic DetailLevel element defined in AbstractRequestType. You can use the following values: ReturnAll, ReturnSubscription, or ReturnPicture.
        /// </param>
        ///
        public PictureManagerDetailsType GetPictureManagerDetails(int FolderID, string PictureURL, PictureManagerDetailLevelCodeType PictureManagerDetailLevel)
        {
            this.FolderID = FolderID;
            this.PictureURL = PictureURL;
            this.PictureManagerDetailLevel = PictureManagerDetailLevel;

            Execute();
            return ApiResponse.PictureManagerDetails;
        }