I have one method that receives a Stream to write on it using a BinaryWriter. But when I dispose this BinaryWriter it also closes the stream. Can I leave it undisposed so I can leave my stream open?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Just do not call Dispose, use Flush instead, its safe.

link|improve this answer
Yeah, I checked that on Reflector and it's true. – Jader Dias Jul 5 '09 at 21:04
It's safe today. Are you going to use Reflector on ever release of .NET to make sure it continues to be safe? This is not a solution. -1. – John Saunders Jul 5 '09 at 21:05
2  
It will be always safe. Just because of writer semantics. Just think why it has dispose for now (hint look at examples on msdn). Also note that this is not the only place in .NET that incorrectly use IDisposable, for example well know Dispose problem with WCF channels. – Mike Chaliy Jul 5 '09 at 21:12
1  
It has dispose just because ONE of the usage scenarious assumes that it can own stream's lifetime. The fact that object is disposable is not something that requires to call dispose. Sometimes it just syntax helper. In the case of BinnaryWriter this is the case. (BTW BinnaryWriter is Serializable, lets make serialize it?, how so, how serialize writer?) Regarding hack, I am fail to see one. – Mike Chaliy Jul 5 '09 at 22:22
3  
"The fact that object is disposable is not something that requires to call dispose" - there we again disagree. IDisposable is a contract; unless you have a very good reason, you should dispose it when done. Anything else breaks encapsulation. You shouldn't know or care what it needs disposable for... it is disposable: dispose it. Replied to your other comment (on my post), too. – Marc Gravell Jul 10 '09 at 22:50
show 2 more comments
feedback

In the case of BinaryWriter, that isn't a direct option (although some stream wrappers do allow you to control this, for example GZipStream etc).

Jon has a NonClosingStreamWrapper in MiscUtil which should work: you wrap your stream in the non-closing wrapper, and give the wrapper to BinaryWriter. This essentially passes through everything except Close() and Dispose().

link|improve this answer
Great library, nice work! – Jader Dias Jul 5 '09 at 21:05
Link's broken: yoda.arachsys.com/csharp/miscutil – colithium Jul 5 '09 at 21:13
Dont you think that there is a bit of hack? You suggest to change behavior(and assumtions) of the BinnaryWriter by fooling it with wrapper? – Mike Chaliy Jul 5 '09 at 22:24
2  
No, that changes nothing at all related with BinaryWriter; it writes values to a stream and tells the stream when it is finished. Care to expand on what you have in mind? It is certainly a lot less hacky than not disposing something that is IDisposable on the grounds that you peeked at the implementation and decided to overrule it... – Marc Gravell Jul 5 '09 at 22:35
2  
When a BinaryWriter closes, it flushes itself and tells the stream to close; with the wrapper, it would still flush itself. The difference it that the stream doesn't close. – Marc Gravell Jul 10 '09 at 22:48
show 3 more comments
feedback

The protected BinaryWriter.Dispose(bool) method is virtual, and all it does is closes the stream (you can check that it is true in Reflector). -This method is called by the Dispose() method.

You can simply inherit a class from the BinaryWriter and override the Dispose(bool) method to do nothing, or something else alltogether.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.