OpenSSL.Core.Native.BIO_new_mem_buf C# (CSharp) Метод

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

private BIO_new_mem_buf ( byte buf, int len ) : IntPtr
buf byte
len int
Результат System.IntPtr
        public static extern IntPtr BIO_new_mem_buf(byte[] buf, int len);

Usage Example

Пример #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)
 {
 }
Native