SqlDependency.OnChange Event

Definition

Occurs when a notification is received for any of the commands associated with this SqlDependency object.

public:
 event System::Data::SqlClient::OnChangeEventHandler ^ OnChange;
public event System.Data.SqlClient.OnChangeEventHandler OnChange;
member this.OnChange : System.Data.SqlClient.OnChangeEventHandler 
Public Custom Event OnChange As OnChangeEventHandler 

Event Type

Remarks

OnChange occurs when the results for the associated command change. If you are not using OnChange, you can check the HasChanges property to determine whether the query results have changed.

The OnChange event does not necessarily imply a change in the data. Other circumstances, such as time-out expired and failure to set the notification request, also generate OnChange.

Applies to

See also