OleDbConnectionStringBuilder.cs (30)
39private static readonly Dictionary<string, Keywords> s_keywords = new Dictionary<string, Keywords>(5, StringComparer.OrdinalIgnoreCase)
41{ DbConnectionStringKeywords.FileName, Keywords.FileName },
42{ DbConnectionStringKeywords.Provider, Keywords.Provider },
43{ DbConnectionStringKeywords.DataSource, Keywords.DataSource },
44{ DbConnectionStringKeywords.PersistSecurityInfo, Keywords.PersistSecurityInfo },
45{ DbConnectionStringKeywords.OleDbServices, Keywords.OleDbServices },
80Keywords index;
98Keywords index;
103case Keywords.DataSource:
106case Keywords.FileName:
109case Keywords.Provider:
113case Keywords.OleDbServices:
117case Keywords.PersistSecurityInfo:
295Reset((Keywords)i);
301private object GetAt(Keywords index)
305case Keywords.DataSource:
307case Keywords.FileName:
309case Keywords.OleDbServices:
311case Keywords.PersistSecurityInfo:
313case Keywords.Provider:
326Keywords index;
338private void Reset(Keywords index)
342case Keywords.DataSource:
345case Keywords.FileName:
349case Keywords.OleDbServices:
352case Keywords.PersistSecurityInfo:
355case Keywords.Provider:
394Keywords index;
436Keywords index;