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

SqlNotificationEventArgs

namespace System.Data.SqlClient { 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); } } }