<PackageReference Include="Microsoft.Data.SqlClient" Version="7.1.0-preview2.26190.5" />

Interop.Windows.NtDll.ObjectAttributes

OBJECT_ATTRIBUTES structure. The OBJECT_ATTRIBUTES structure specifies attributes that can be applied to objects or object handles by routines that create objects and/or return handles to objects.
namespace Interop.Windows.NtDll { internal struct ObjectAttributes { public uint Length; public IntPtr RootDirectory; public unsafe UnicodeString* ObjectName; public ObjectAttributeFlags Attributes; public unsafe void* SecurityDescriptor; public unsafe SecurityQualityOfService* SecurityQoS; public unsafe ObjectAttributes(UnicodeString* objectName, ObjectAttributeFlags attributes, IntPtr rootDirectory, SecurityQualityOfService* securityQos); } }