Recurity.Swf.TagHandler.UndocumentedTag.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)
        {
            Log.Warn(this, "Writing empty tag for undocumented tag");

            WriteTagHeader(output);

            BinaryWriter bw = new BinaryWriter(output);

            output.Write(new byte[this._data.Length], 0, this._data.Length);
        }