示例#1
0
 internal void OnNotification(object O, NpgsqlNotificationEventArgs E)
 {
     if (Notification != null)
     {
         Notification(this, E);
     }
 }
示例#2
0
 internal void FireNotification(NpgsqlNotificationEventArgs e)
 {
     if (Notification != null)
     {
         try
         {
             Notification(this, e);
         }
         catch
         {
         }                 //Eat exceptions from user code.
     }
 }
示例#3
0
 internal void FireNotification(NpgsqlNotificationEventArgs e)
 {
     if (Notification != null)
     {
         try
         {
             Notification(this, e);
         }
         catch
         {
         } //Eat exceptions from user code.
     }
 }
示例#4
0
		internal void OnNotification(object O, NpgsqlNotificationEventArgs E)
		{
			if (Notification != null)
			{
				Notification(this, E);
			}
		}