2 implementations of GetName
System.Data.Common (2)
System\Data\Common\DbDataReader.cs (1)
74
public abstract string
GetName
(int ordinal);
System\Data\Common\DbDataRecord.cs (1)
57
public abstract string
GetName
(int i);
5 references to GetName
System.Data.Common (4)
System\Data\Common\DbEnumerator.cs (2)
90
fieldnames[i] = _reader.
GetName
(i);
99
s.name = _reader.
GetName
(i);
System\Data\Common\FieldNameLookup.cs (1)
30
fieldNames[i] = reader.
GetName
(i);
System\Data\ProviderBase\DataReaderContainer.cs (1)
52
string fieldName = _dataReader.
GetName
(ordinal);
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\Common\BasicFieldNameLookup.cs (1)
49
fieldNames[i] = reader.
GetName
(i);