summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2017-09-16 09:55:10 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2017-09-16 09:55:10 +0700
commit8de129270af0258ffa66ba615deee64dc65a9f78 (patch)
tree935cc6e81c220276786a4beecc28a8251cefc9cb
parentUse RandomNumberGenerator.Create (diff)
downloadBouncyCastle.NET-ed25519-8de129270af0258ffa66ba615deee64dc65a9f78.tar.xz
Add class summary
-rw-r--r--crypto/test/src/util/test/UncloseableStream.cs5
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
 	{