Recurity.Swf.ClipActions.Verify C# (CSharp) 메소드

Verify() 공개 메소드

public Verify ( ) : bool
리턴 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;
        }