<PackageReference Include="System.Data.SqlClient" Version="4.8.1" />

SqlNotificationRequest

public sealed class SqlNotificationRequest
Represents a request for notification for a given command.
namespace System.Data.Sql { public sealed class SqlNotificationRequest { public string Options { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public int Timeout { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public string UserData { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public SqlNotificationRequest() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public SqlNotificationRequest(string userData, string options, int timeout) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } }