Recurity.Swf.Style.Parse C# (CSharp) Méthode

Parse() public méthode

public Parse ( Stream input, TagTypes caller ) : void
input Stream
caller TagTypes
Résultat void
        public void Parse( Stream input, TagTypes caller )
        {
            this._fillStyles.Parse( input, caller );
            this._lineStyles.Parse( input, caller );

            BitStream bits = new BitStream( input );

            this._numFillBits = (byte)bits.GetBits( 4 );
            this._numLineBits = (byte)bits.GetBits( 4 );
        }