Recurity.Swf.ClipActions.Verify C# (CSharp) Method

Verify() public method

public Verify ( ) : bool
return bool
        public bool Verify()
        {
            bool actionRecordsValid = true;

            for ( int i = 0; i < _ClipActionRecords.Count; i++ )
            {
                actionRecordsValid = actionRecordsValid & _ClipActionRecords[ i ].Verify();
            }

            // not clear why this was commented out ?!?
            if ( ! actionRecordsValid )
                return false;

            return true;
        }