I know about the ADODB.Stream object.
But what I really want is a Stream for which calls to Write() are no-ops. Like System.IO.Stream.Null. I think ADODB.Stream
is more like a MemoryStream, which accumulates the data in memory.
And I cannot create an instance of System.IO.Stream.Null
from COM, because it is a static property on the Stream class, thus inaccessible from COM. Or can I? (without writing a wrapper class)