10 writes to _currentChartImageLocation
System.Web.DataVisualization (10)
WebForm\ChartWebControl.cs (10)
425this._currentChartImageLocation = this.ImageLocation; 443_currentChartImageLocation += ".bmp"; 446_currentChartImageLocation += ".jpeg"; 449_currentChartImageLocation += ".png"; 452_currentChartImageLocation += ".emf"; 470_currentChartImageLocation = _currentChartImageLocation.Replace("#UID", Guid.NewGuid().ToString()); 477_currentChartImageLocation = GetNewSeqImageUrl(_currentChartImageLocation); 487_currentChartImageLocation = _currentChartImageLocation.Replace("#NOGUIDPARAM", ""); 494_currentChartImageLocation = this.Page.ResolveUrl(_currentChartImageLocation); 738this._currentChartImageLocation = String.Empty;
13 references to _currentChartImageLocation
System.Web.DataVisualization (13)
WebForm\ChartWebControl.cs (13)
419if (this._currentChartImageLocation.Length > 0) 421return this._currentChartImageLocation; 436int pointIndex = _currentChartImageLocation.LastIndexOf('.'); 437int slashIndex = _currentChartImageLocation.LastIndexOfAny(slashesArray); 459indexUID = _currentChartImageLocation.IndexOf("#UID", StringComparison.Ordinal); 460int indexSEQ = _currentChartImageLocation.IndexOf("#SEQ", StringComparison.Ordinal); 470_currentChartImageLocation = _currentChartImageLocation.Replace("#UID", Guid.NewGuid().ToString()); 477_currentChartImageLocation = GetNewSeqImageUrl(_currentChartImageLocation); 484int indexNoGuidParam = _currentChartImageLocation.IndexOf("#NOGUIDPARAM", StringComparison.Ordinal); 487_currentChartImageLocation = _currentChartImageLocation.Replace("#NOGUIDPARAM", ""); 491if (_currentChartImageLocation.StartsWith("~", StringComparison.Ordinal) && HttpContext.Current != null && this.Page.Request != null) 494_currentChartImageLocation = this.Page.ResolveUrl(_currentChartImageLocation); 497return _currentChartImageLocation;