Achamenes.ID3.Fields.Field.WriteToStream C# (CSharp) Method

WriteToStream() public method

When overridden in a derived class, writes the field to a given stream.
/// The passed stream was null. ///
public WriteToStream ( Stream stream ) : void
stream Stream The stream to write to.
return void
        public virtual void WriteToStream(Stream stream)
        {
            if(stream==null)
                throw new ArgumentNullException("The parameter 'stream' can not be null.");
        }