Hi,
I have a producer which provides a System.IO.Stream instance. I also have several clients which consume this stream.
Is it possible to give each client a "private view" of the stream? For example, if clientA reads from the stream, it doesn't affect the position clientB sees (i.e. if clientB start reading from the stream, it gets the beginning of it, not from where clientA left the position). If it makes any difference, the clients are only reading from the stream.
Hope it makes sense.
Thanks in advance, Mike