diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-09-16 09:55:10 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-09-16 09:55:10 +0700 |
commit | 8de129270af0258ffa66ba615deee64dc65a9f78 (patch) | |
tree | 935cc6e81c220276786a4beecc28a8251cefc9cb /crypto/test | |
parent | Use RandomNumberGenerator.Create (diff) | |
download | BouncyCastle.NET-ed25519-8de129270af0258ffa66ba615deee64dc65a9f78.tar.xz |
Add class summary
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/util/test/UncloseableStream.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/test/src/util/test/UncloseableStream.cs b/crypto/test/src/util/test/UncloseableStream.cs index 2a3b4229b..0a7a16e66 100644 --- a/crypto/test/src/util/test/UncloseableStream.cs +++ b/crypto/test/src/util/test/UncloseableStream.cs @@ -5,6 +5,11 @@ using Org.BouncyCastle.Utilities.IO; namespace Org.BouncyCastle.Utilities.Test { + /// <summary> + /// This is a testing utility class to check the property that a <c>Stream</c> is never + /// closed in some particular context - typically when wrapped by another <c>Stream</c> that + /// should not be forwarding its <c>Stream.Close()</c> calls. Not needed in production code. + /// </summary> public class UncloseableStream : FilterStream { |