5 instantiations of DbEnumerator
System.Data (4)
fx\src\data\System\Data\DataTableReader.cs (1)
597
return new
DbEnumerator
((IDataReader)this);
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (1)
355
return new
DbEnumerator
((IDataReader)this, IsCommandBehavior(CommandBehavior.CloseConnection));
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (1)
919
return new
DbEnumerator
((IDataReader)this, IsCommandBehavior(CommandBehavior.CloseConnection));
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
1223
return new
DbEnumerator
(this, IsCommandBehavior(CommandBehavior.CloseConnection));
System.Data.Entity (1)
System\Data\Query\ResultAssembly\BridgeDataReader.cs (1)
321
IEnumerator result = new
DbEnumerator
((IDataReader)this, true); // We always want to close the reader;
14 references to DbEnumerator
System.Web.DataVisualization (7)
Common\DataManager\DataPoint.cs (5)
436
if (enumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
635
if(xEnumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
644
if(yEnumerator[i].GetType() != typeof(System.Data.Common.
DbEnumerator
))
806
if(yEnumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
816
if(xEnumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
Common\General\Chart.cs (2)
746
if(enumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
) )
1146
if(enumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
System.Windows.Forms.DataVisualization (7)
Common\DataManager\DataPoint.cs (5)
436
if (enumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
635
if(xEnumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
644
if(yEnumerator[i].GetType() != typeof(System.Data.Common.
DbEnumerator
))
806
if(yEnumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
816
if(xEnumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))
Common\General\Chart.cs (2)
746
if(enumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
) )
1146
if(enumerator.GetType() != typeof(System.Data.Common.
DbEnumerator
))