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

SqlNotificationEventArgs

namespace System.Data.SqlClient { [Obsolete("Use the Microsoft.Data.SqlClient package instead.")] public class SqlNotificationEventArgs : EventArgs { public SqlNotificationInfo Info { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public SqlNotificationSource Source { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public SqlNotificationType Type { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } }