BIO_new_mem_buf() приватный Метод

private BIO_new_mem_buf ( byte buf, int len ) : IntPtr
buf byte
len int
Результат System.IntPtr
Пример #1
0
 /// <summary>
 /// Calls BIO_new_mem_buf() from the specified buffer.
 /// </summary>
 /// <param name="buf"></param>
 public BIO(byte[] buf)
     : base(Native.ExpectNonNull(Native.BIO_new_mem_buf(buf, buf.Length)), true)
 {
 }