Recurity.Swf.AlphaColorMapData.Write C# (CSharp) Method

Write() public method

Writes this object back to a stream.
public Write ( Stream output ) : void
output Stream The stream to write to.
return void
        public override void Write( Stream output )
        {
            for (int i = 0; i < this._colorTableRGB.Count; i++)
            {
                this._colorTableRGB[i].Write(output);
            }

            output.Write(this._colormapPixelData, 0, this._colormapPixelData.Length);
        }