NHibernate.Lob.CompressedClob.CompressedClob C# (CSharp) Method

CompressedClob() public method

public CompressedClob ( byte data, Encoding encoding ) : System.IO
data byte
encoding System.Text.Encoding
return System.IO
		public CompressedClob(byte[] data, Encoding encoding)
		{
			if (data == null) throw new ArgumentNullException("data");
			if (encoding == null) throw new ArgumentNullException("encoding");
			this.data = data;
			this.encoding = encoding;
		}

Same methods

CompressedClob::CompressedClob ( byte data, Encoding encoding, IStreamCompressor compression ) : System.IO