6 instantiations of tagDBPROP
System.Data (6)
fx\src\data\System\Data\OleDb\DBPropSet.cs (2)
176properties[i] = new tagDBPROP(); 244tagDBPROP dbprop = new tagDBPROP(propertyId, required, value);
fx\src\data\System\Data\OleDb\OleDbCommand.cs (4)
1234dbprops[0] = new tagDBPROP(ODB.DBPROP_COMMANDTIMEOUT, false, CommandTimeout); 1238dbprops[1] = new tagDBPROP(ODB.DBPROP_ACCESSORDER, false, ODB.DBPROPVAL_AO_RANDOM); // MDAC 73030 1242dbprops[2] = new tagDBPROP(ODB.DBPROP_UNIQUEROWS, false, keyInfo); 1245dbprops[3] = new tagDBPROP(ODB.DBPROP_IColumnsRowset, false, true);
17 references to tagDBPROP
System.Data (17)
fx\src\data\System\Data\OleDb\DBPropSet.cs (6)
150internal tagDBPROP[] GetPropertySet(int index, out Guid propertyset) { 164tagDBPROP[] properties = null; 174properties = new tagDBPROP[propset.cProperties]; 189internal void SetPropertySet(int index, Guid propertySet, tagDBPROP[] properties) { 244tagDBPROP dbprop = new tagDBPROP(propertyId, required, value); 246propertyset.SetPropertySet(0, propertySet, new tagDBPROP[1] { dbprop });
fx\src\data\System\Data\OleDb\OLEDB_Util.cs (3)
510static internal readonly int SizeOf_tagDBPROP = Marshal.SizeOf(typeof(tagDBPROP)); 517static internal readonly int OffsetOf_tagDBPROP_Status = Marshal.OffsetOf(typeof(tagDBPROP), "dwStatus").ToInt32(); 518static internal readonly int OffsetOf_tagDBPROP_Value = Marshal.OffsetOf(typeof(tagDBPROP), "vValue").ToInt32();
fx\src\data\System\Data\OleDb\OleDbCommand.cs (3)
1160tagDBPROP[] dbprops; 1232tagDBPROP[] dbprops = new tagDBPROP[count];
fx\src\data\System\Data\OleDb\OleDbConnection.cs (1)
552tagDBPROP[] dbprops = propSet.GetPropertySet(0, out propertySet);
fx\src\data\System\Data\OleDb\OleDbConnectionInternal.cs (1)
349tagDBPROP[] dbprops;
fx\src\data\System\Data\OleDb\OledbConnectionStringbuilder.cs (2)
437tagDBPROP[] props = propset.GetPropertySet(i, out propertyset); 440foreach(tagDBPROP prop in props) {
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (1)
1653tagDBPROP[] dbprops;