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

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

public GetTags ( int photoId, int ownerId ) : List
photoId int
ownerId int
Результат List
        public List<PhotoEntryTag> GetTags(int photoId, int? ownerId)
        {
            this.Manager.Method("photos.getTags");
            this.Manager.Params("pid", photoId);
            if (ownerId != null)
            {
                this.Manager.Params("owner_id", ownerId);
            }

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