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

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

public GetPhotosById ( string photos ) : List
photos string
Результат List
        public List<PhotoEntryFull> GetPhotosById(string[] photos)
        {
            this.Manager.Method("photos.getById");
            if (photos != null)
            {
                this.Manager.Params("photos", string.Join(",", photos));
            }
            XmlNode result = this.Manager.Execute().GetResponseXml();
            if (this.Manager.MethodSuccessed)
            {
                return this.buildPhotosListFull(result);
            }
            return null;
        }