Revision 133f83c2 trunk/Pithos.Client.WPF/Configuration/PithosSettings.cs

b/trunk/Pithos.Client.WPF/Configuration/PithosSettings.cs
168 168
            get { return _settings.ShowDesktopNotifications; }
169 169
            set { _settings.ShowDesktopNotifications = value; }
170 170
        }
171

  
172

  
173
        public int PollingInterval
174
        {
175
            get { return _settings.PollingInterval; }
176
            set
177
            {
178
                if (value <= 0)
179
                    throw new ArgumentOutOfRangeException();
180
                _settings.PollingInterval = value;
181
            }
182
        }
171 183
/*
172 184
        public override IEnumerable<string> GetDynamicMemberNames()
173 185
        {

Also available in: Unified diff