2 implementations of ItagDBPROP
System.Data.OleDb (2)
OleDbStruct.cs (2)
316internal sealed class tagDBPROP_x86 : ItagDBPROP 346internal sealed class tagDBPROP : ItagDBPROP
24 references to ItagDBPROP
System.Data.OleDb (24)
DbPropSet.cs (6)
165internal ItagDBPROP[] GetPropertySet(int index, out Guid propertyset) 182ItagDBPROP[]? properties = null; 193properties = new ItagDBPROP[propset.cProperties]; 211internal void SetPropertySet(int index, Guid propertySet, ItagDBPROP[] properties) 280ItagDBPROP dbprop = OleDbStructHelpers.CreateTagDbProp(propertyId, required, value); 282propertyset.SetPropertySet(0, propertySet, new ItagDBPROP[1] { dbprop });
OleDbCommand.cs (3)
1249ItagDBPROP[] dbprops; 1331ItagDBPROP[] dbprops = new ItagDBPROP[count];
OleDbConnection.cs (1)
548ItagDBPROP[] dbprops = propSet.GetPropertySet(0, out propertySet);
OleDbConnectionInternal.cs (1)
358ItagDBPROP[] dbprops;
OleDbConnectionStringBuilder.cs (2)
479ItagDBPROP[] props = propset.GetPropertySet(i, out propertyset); 482foreach (ItagDBPROP prop in props)
OleDbDataReader.cs (1)
1810ItagDBPROP[] dbprops;
OleDbStruct.cs (10)
318OleDbPropertyStatus ItagDBPROP.dwStatus => this.dwStatus; 320object? ItagDBPROP.vValue => this.vValue; 322int ItagDBPROP.dwPropertyID => this.dwPropertyID; 348OleDbPropertyStatus ItagDBPROP.dwStatus => this.dwStatus; 350object? ItagDBPROP.vValue => this.vValue; 352int ItagDBPROP.dwPropertyID => this.dwPropertyID; 576internal static ItagDBPROP CreateTagDbProp(int propertyID, bool required, object value) => 577ODB.IsRunningOnX86 ? (ItagDBPROP)new tagDBPROP_x86(propertyID, required, value) : 580internal static ItagDBPROP CreateTagDbProp() => 581ODB.IsRunningOnX86 ? (ItagDBPROP)new tagDBPROP_x86() : new tagDBPROP();