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

BIO() public method

Calls BIO_new(BIO_s_mem()) and then BIO_write() the str
public BIO ( string str ) : System
str string
return System
		public BIO(string str)
			: this(Encoding.ASCII.GetBytes(str))
		{
		}

Same methods

BIO::BIO ( IntPtr ptr, bool owner ) : System
BIO::BIO ( byte buf ) : System