4 writes to _current
System.Web.DataVisualization (4)
WebForm\General\ChartHttpHandler.cs (4)
1791this._current = this._list.First; 1833this._current = this._list.Last; 1837this._current = this._list.First; 1846this._current = this._current.Next;
10 references to _current
System.Web.DataVisualization (10)
WebForm\General\ChartHttpHandler.cs (10)
1792this._current.Value.Created = DateTime.Now - this._itemLifeTime - TimeSpan.FromSeconds(1); 1826if ( !this.IsExpired(this._current.Value, now)) 1828if (this._current.Next == null) 1842if (!this.IsExpired(this._current.Next.Value, now)) 1844this._list.AddAfter(this._current, new RingItem(_list.Count)); 1846this._current = this._current.Next; 1849this._current.Value.Created = now; 1852this._current.Value.SessionID = ChartHttpHandler.Settings.ReadSessionKey(); 1853this._current.Value.InUse = true; 1865return String.Format( CultureInfo.InvariantCulture, this._keyFormat, this._current.Value.Index);