summary refs log tree commit diff
path: root/crypto/src/util/io/MemoryOutputStream.cs
blob: 828f23b4a1d57127b3dc172d7635ebeb3e37645b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.IO;

namespace Org.BouncyCastle.Utilities.IO
{
    public class MemoryOutputStream
        : MemoryStream
    {
        public sealed override bool CanRead
        {
            get { return false; }
        }
    }
}