3 writes to flags
System.Data (3)
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (3)
503info.flags = dbColumnInfo.dwFlags; 1869info.flags &= ~ODB.DBCOLUMNFLAGS_ISNULLABLE; 2109info.flags = unchecked((int) columnflags.columnBinding.Value_UI4());
8 references to flags
System.Data (8)
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (8)
375newRow[isLong] = OleDbDataReader.IsLong(info.flags); 377newRow[allowDBNull] = OleDbDataReader.AllowDBNull(info.flags); 380newRow[allowDBNull] = OleDbDataReader.AllowDBNullMaybeNull(info.flags); 382newRow[isReadOnly] = OleDbDataReader.IsReadOnly(info.flags); 383newRow[isRowVersion] = OleDbDataReader.IsRowVersion(info.flags); 2111bool islong = OleDbDataReader.IsLong(info.flags); 2112bool isfixed = OleDbDataReader.IsFixed(info.flags); 2223else if (OleDbDataReader.DoColumnDropFilter(info.flags)) {