OpenSSL.Core.Native.BIO_free C# (CSharp) Method

BIO_free() private method

private BIO_free ( IntPtr bio ) : void
bio System.IntPtr
return void
        public static extern void BIO_free(IntPtr bio);

Usage Example

Example #1
0
 /// <summary>
 /// Calls BIO_free()
 /// </summary>
 protected override void OnDispose()
 {
     Native.BIO_free(ptr);
 }
Native