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