NotificationConnection.ReconnectDelay is not updated although you change the value the property value is not changed.
Currently NotificationService.ReconnectDelay is: public int ReconnectDelay { get ; set; }
Should be like NotificationService.SendRetries
public int SendRetries { get { return sendRetries; } set { sendRetries = value; foreach (NotificationConnection con in notificationConnections) con.SendRetries = sendRetries; } }
* solution ******* public int ReconnectDelay { get { return reconnectDelay; } set { reconnectDelay = value; foreach (NotificationConnection con in notificationConnections) con.ReconnectDelay = reconnectDelay; } }
Comment #1
Posted on Mar 27, 2010 by Happy LionFixed via your suggestion. Thanks!
Status: Fixed
Labels:
Type-Defect
Priority-Medium