Recurity.Swf.AbstractSwfElement.AbstractSwfElement C# (CSharp) Method

AbstractSwfElement() public method

Class that represents a Swf file implementing the ISwfElement
public AbstractSwfElement ( byte InitialVersion ) : System
InitialVersion byte The version of the element
return System
        public AbstractSwfElement( byte InitialVersion )
        {
            if ( InitialVersion > _MaximumSwfVersion )
            {
                throw new ArgumentOutOfRangeException( "Swf version > 10 invalid" );
            }

            _SwfVersion = InitialVersion;
        }
AbstractSwfElement