6 writes to result
System.Data.SqlXml (6)
System\Xml\Xsl\Runtime\XmlAggregates.cs (6)
190this.result = value; 194this.result += value; 200this.result = value; 202this.result += value; 209this.result = value; 216this.result = value;
6 references to result
System.Data.SqlXml (6)
System\Xml\Xsl\Runtime\XmlAggregates.cs (6)
208if (this.cnt == 0 || value < this.result || double.IsNaN(value)) 215if (this.cnt == 0 || value > this.result || double.IsNaN(value)) 221public double SumResult { get { return this.result; } } 222public double AverageResult { get { return this.result / (double) this.cnt; } } 223public double MinimumResult { get { return this.result; } } 224public double MaximumResult { get { return this.result; } }