CSharpRTMP.Core.MediaFormats.mp4.boxes.BoxAtom.Read C# (CSharp) Method

Read() public method

public Read ( ) : void
return void
        public override void Read()
        {
            while (CurrentPosition != Start + Size)
            {
                var pAtom = Document.ReadAtom(this);
                if (!pAtom.IsIgnored) AtomCreated(pAtom);
                SubAtoms.Add(pAtom);
            }
        }