ApiCore.Photos.PhotosFactory.GetUserPhotos C# (CSharp) Метод

GetUserPhotos() публичный Метод

public GetUserPhotos ( int userId, int count, int offset ) : List
userId int
count int
offset int
Результат List
        public List<PhotoEntryShort> GetUserPhotos(int? userId, int? count, int? offset)
        {
            this.Manager.Method("photos.getUserPhotos");
            if (userId != null)
            {
                this.Manager.Params("uid", userId);
            }
            if (count != null)
            {
                this.Manager.Params("limit", count);
            }
            if (offset != null)
            {
                this.Manager.Params("offset", offset);
            }

            XmlNode result = this.Manager.Execute().GetResponseXml();
            if (this.Manager.MethodSuccessed)
            {
                return this.buildPhotosListShort(result);
            }
            return null;
        }