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;
}