Recurity.Swf.TagHandler.PlaceObject2.Verify C# (CSharp) Method

Verify() public method

Verifies this object and its components for documentation compliance.
public Verify ( ) : bool
return bool
        public override bool Verify()
        {
            // CharacterID is only valid if flag is set
            if ((!_PlaceFlagHasCharacter) && (_CharacterID != 0))
            {
                return false;
            }

            // TODO: Make more verifications on PlaceObject2

            // now, verify the code itself
            return VerifyAllCode();
        }