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

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

public RemoveTag ( int ownerId, int photoId, int tagId ) : bool
ownerId int
photoId int
tagId int
Результат bool
        public bool RemoveTag(int? ownerId, int photoId, int tagId)
        {
            this.Manager.Method("photos.removeTag");
            this.Manager.Params("pid", photoId);
            this.Manager.Params("tag_id", tagId);
            if (ownerId != null)
            {
                this.Manager.Params("owner_id", ownerId);
            }

            XmlNode result = this.Manager.Execute().GetResponseXml();
            if (this.Manager.MethodSuccessed)
            {
                XmlUtils.UseNode(result);
                return XmlUtils.BoolVal();
            }
            return false;
        }