SwfDotNet.IO.Swf.tagList_TagAdded C# (CSharp) Method

tagList_TagAdded() private method

A new tag was added to the tag collection
private tagList_TagAdded ( BaseTag tagAdded ) : void
tagAdded SwfDotNet.IO.Tags.BaseTag Tag added.
return void
        private void tagList_TagAdded(BaseTag tagAdded)
        {
            if (tagAdded is DefineTag)
                dictionnary.Add((DefineTag)tagAdded);

            if (tagAdded is ShowFrameTag)
                this.header.Frames++;
        }