1 instantiation of OleDbPropertyInfo
System.Data.OleDb (1)
PropertyInfoSet.cs (1)
84OleDbPropertyInfo propertyInfo = new OleDbPropertyInfo();
22 references to OleDbPropertyInfo
System.Data.OleDb (22)
OleDbConnectionInternal.cs (2)
824internal Dictionary<string, OleDbPropertyInfo>? GetPropertyInfo(Guid[] propertySets) 826Dictionary<string, OleDbPropertyInfo>? properties = null;
OleDbConnectionStringBuilder.cs (16)
49private Dictionary<string, OleDbPropertyInfo>? _propertyInfo; 87Dictionary<string, OleDbPropertyInfo> dynamic = GetProviderInfo(Provider); 88OleDbPropertyInfo info = dynamic[keyword]; 212Dictionary<string, OleDbPropertyInfo> dynamic = GetProviderInfo(Provider); 402Dictionary<string, OleDbPropertyInfo> dynamic = GetProviderInfo(Provider); 403OleDbPropertyInfo? info; 414private Dictionary<string, OleDbPropertyInfo> GetProviderInfo(string provider) 416Dictionary<string, OleDbPropertyInfo>? providerInfo = _propertyInfo; 419providerInfo = new Dictionary<string, OleDbPropertyInfo>(StringComparer.OrdinalIgnoreCase); 422Dictionary<string, OleDbPropertyInfo>? hash = null; 434foreach (KeyValuePair<string, OleDbPropertyInfo> entry in hash) 437OleDbPropertyInfo info = entry.Value; 453foreach (KeyValuePair<string, OleDbPropertyInfo> entry in hash) 455OleDbPropertyInfo info = entry.Value; 484foreach (KeyValuePair<string, OleDbPropertyInfo> entry in hash) 486OleDbPropertyInfo info = entry.Value;
PropertyInfoSet.cs (4)
57internal Dictionary<string, OleDbPropertyInfo>? GetValues() 59Dictionary<string, OleDbPropertyInfo>? propertyLookup = null; 68propertyLookup = new Dictionary<string, OleDbPropertyInfo>(StringComparer.OrdinalIgnoreCase); 84OleDbPropertyInfo propertyInfo = new OleDbPropertyInfo();