OpenSSL.Core.BIO.BIO C# (CSharp) Method

BIO() public method

Calls BIO_new(BIO_s_mem()) and then BIO_write() the buf
public BIO ( byte buf ) : System
buf byte
return System
		public BIO(byte[] buf)
			: base(Native.ExpectNonNull(Native.BIO_new(Native.BIO_s_mem())), true)
		{
			this.Write(buf);
		}

Same methods

BIO::BIO ( IntPtr ptr, bool owner ) : System
BIO::BIO ( string str ) : System