using System;
using System.Collections.Generic;
+using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/// <summary>
/// This class manages the connection handle resources.
/// </summary>
+ [EditorBrowsable(EditorBrowsableState.Never)]
public sealed class SafeConnectionHandle : SafeHandle
{
internal SafeConnectionHandle(IntPtr handle) : base(handle, true)
/// Gets the connection handle.
/// </summary>
/// <returns>Instance of SafeConnectionHandle</returns>
+ [EditorBrowsable(EditorBrowsableState.Never)]
public static SafeConnectionHandle GetConnectionHandle()
{
IntPtr handle = ConnectionInternalManager.Instance.GetHandle();