1 instantiation of OleDbPropertyInfo
System.Data (1)
fx\src\data\System\Data\OleDb\PropertyInfoSet.cs (1)
85OleDbPropertyInfo propertyInfo = new OleDbPropertyInfo();
24 references to OleDbPropertyInfo
System.Data (24)
fx\src\data\System\Data\OleDb\OleDbConnectionInternal.cs (2)
750internal Dictionary<string,OleDbPropertyInfo> GetPropertyInfo(Guid[] propertySets) { 753Dictionary<string,OleDbPropertyInfo> properties = null;
fx\src\data\System\Data\OleDb\OledbConnectionStringbuilder.cs (18)
43private Dictionary<string,OleDbPropertyInfo> _propertyInfo; 95Dictionary<string,OleDbPropertyInfo> dynamic = GetProviderInfo(Provider); 96OleDbPropertyInfo info = dynamic[keyword]; 216Dictionary<string,OleDbPropertyInfo> dynamic = GetProviderInfo(Provider); 373Dictionary<string,OleDbPropertyInfo> dynamic = GetProviderInfo(Provider); 374OleDbPropertyInfo info; 384private Dictionary<string,OleDbPropertyInfo> GetProviderInfo(string provider) { 385Dictionary<string,OleDbPropertyInfo> providerInfo = _propertyInfo; 387providerInfo = new Dictionary<string,OleDbPropertyInfo>(StringComparer.OrdinalIgnoreCase); 389Dictionary<string,OleDbPropertyInfo> hash = null; 401foreach(KeyValuePair<string,OleDbPropertyInfo> entry in hash) { 403OleDbPropertyInfo info = entry.Value; 417foreach(KeyValuePair<string,OleDbPropertyInfo> entry in hash) { 418OleDbPropertyInfo info = entry.Value; 442foreach(KeyValuePair<string,OleDbPropertyInfo> entry in hash) { 443OleDbPropertyInfo info = entry.Value; 484Dictionary<string,OleDbPropertyInfo> providerInfo = GetProviderInfo(Provider); 487foreach(OleDbPropertyInfo info in providerInfo.Values) {
fx\src\data\System\Data\OleDb\PropertyInfoSet.cs (4)
63internal Dictionary<string,OleDbPropertyInfo> GetValues() { 64Dictionary<string,OleDbPropertyInfo> propertyLookup = null; 71propertyLookup = new Dictionary<string,OleDbPropertyInfo>(StringComparer.OrdinalIgnoreCase); 85OleDbPropertyInfo propertyInfo = new OleDbPropertyInfo();