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